diff options
author | Daniel Stenberg <daniel@haxx.se> | 2005-04-07 08:59:39 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2005-04-07 08:59:39 +0000 |
commit | c6ea59781720e902f74962e02b94f7d1bd0f1043 (patch) | |
tree | a29f6152a530e12aca454b5edab84e2a3e1da3e6 /buildconf | |
parent | 175b00c0a29382e51f240dfcb57fd37e4c066f09 (diff) | |
download | curl-c6ea59781720e902f74962e02b94f7d1bd0f1043.tar.gz |
check for libtoolize and aclocal to doublecheck the installations better
Diffstat (limited to 'buildconf')
-rwxr-xr-x | buildconf | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -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 # |