diff options
Diffstat (limited to 'tools/setup')
-rwxr-xr-x | tools/setup | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/tools/setup b/tools/setup index be625ab..17eed51 100755 --- a/tools/setup +++ b/tools/setup | |||
@@ -18,8 +18,14 @@ else | |||
18 | echo Found GNU Make at $MAKE ... good. | 18 | echo Found GNU Make at $MAKE ... good. |
19 | fi | 19 | fi |
20 | 20 | ||
21 | # This bit is to fix SF's compile server as libtool not installed by default | ||
22 | extra="" | ||
23 | if test -d $HOME/share/aclocal ; then | ||
24 | extra="-I $HOME/share/aclocal" | ||
25 | fi | ||
26 | |||
21 | autopoint --force | 27 | autopoint --force |
22 | aclocal -I m4 | 28 | aclocal -I m4 $extra |
23 | libtoolize --force --copy | 29 | libtoolize --force --copy |
24 | autoheader | 30 | autoheader |
25 | automake --add-missing --force-missing --copy | 31 | automake --add-missing --force-missing --copy |