-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathautogen.sh
More file actions
executable file
·28 lines (26 loc) · 854 Bytes
/
autogen.sh
File metadata and controls
executable file
·28 lines (26 loc) · 854 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/bin/sh
aclocal
libtoolize
automake --gnu --add-missing --copy
autoconf
glib-gettextize --copy --force
intltoolize --copy --force --automake
if [ -e ./configure ]; then
echo
echo "You can now run ./configure"
echo
else
echo
echo "Failure building the configure script."
echo "You may miss required tools (aclocal, libtoolize, automake or"
echo "autoconf) to build cdpfgl."
echo
echo "Please install the appropriated package and re-run autogen.sh"
echo "This might also happen if you don't have the m4 provided as a"
echo "subdirectory in this package in the directory where aclocal will find"
echo "them. Just copy ./m4/* in, usually, /usr/share/aclocal."
echo
echo "Or, it can also come from a configure.ac mistake (then it's my"
echo "business ;)). Please report your issue."
echo
fi