diff options
author | Ton Voon <tonvoon@users.sourceforge.net> | 2006-03-21 12:56:59 +0000 |
---|---|---|
committer | Ton Voon <tonvoon@users.sourceforge.net> | 2006-03-21 12:56:59 +0000 |
commit | 5778b1890e1c328cb38a5f47e886368ab5793bd8 (patch) | |
tree | 9f5ee81e4ce777901ad425073e551031910ef889 /tools/setup | |
parent | b3b735446741fe89ee837d0522dd0d5b68167d92 (diff) | |
download | monitoring-plugins-5778b1890e1c328cb38a5f47e886368ab5793bd8.tar.gz |
Patch to workaround SFnot having libtool installed
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1334 f882894a-f735-0410-b71e-b25c423dba1c
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 |