check for libtoolize and aclocal to doublecheck the installations better
authorDaniel Stenberg <daniel@haxx.se>
Thu, 7 Apr 2005 08:59:39 +0000 (08:59 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 7 Apr 2005 08:59:39 +0000 (08:59 +0000)
buildconf

index 84cd8e5..8b6e425 100755 (executable)
--- a/buildconf
+++ b/buildconf
@@ -85,6 +85,14 @@ fi
 
 echo "buildconf: automake version $am_version (ok)"
 
+ac=`findtool aclocal`
+
+if test -z "$ac"; then
+  echo "buildconf: aclocal not found. Weird automake installation!"
+  exit 1
+else
+  echo "buildconf: aclocal found"
+fi
 
 #--------------------------------------------------------------------------
 # libtool check
@@ -142,6 +150,13 @@ fi
 
 echo "buildconf: libtool version $lt_version (ok)"
 
+if test -f "$LIBTOOLIZE"; then
+  echo "buildconf: libtoolize found"
+else
+  echo "buildconf: libtoolize not found. Weird libtool installation!"
+  exit 1
+fi
+
 #--------------------------------------------------------------------------
 # m4 check
 #