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 be625abd..17eed516 100755 --- a/tools/setup +++ b/tools/setup @@ -18,8 +18,14 @@ else echo Found GNU Make at $MAKE ... good. fi +# This bit is to fix SF's compile server as libtool not installed by default +extra="" +if test -d $HOME/share/aclocal ; then + extra="-I $HOME/share/aclocal" +fi + autopoint --force -aclocal -I m4 +aclocal -I m4 $extra libtoolize --force --copy autoheader automake --add-missing --force-missing --copy |