diff options
author | Harri Porten <porten@kde.org> | 2002-12-15 13:02:44 +0000 |
---|---|---|
committer | Harri Porten <porten@kde.org> | 2002-12-15 13:02:44 +0000 |
commit | dd1fcce2286844719bffd300a0267cfb2d1d4a36 (patch) | |
tree | 08fc692c8704ea510ceb3da239bef6a63c2587f1 /autogen.sh | |
parent | a0e550bc608e96a574f3ea8ed4cf3635733c4a09 (diff) | |
download | dbus-dd1fcce2286844719bffd300a0267cfb2d1d4a36.tar.gz |
check for libtoolize before attempting to use it
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -37,6 +37,13 @@ ACLOCAL=aclocal-1.6 DIE=1 } +(libtoolize --version) < /dev/null > /dev/null 2>&1 || { + echo + echo "You must have libtoolize installed to compile $PROJECT." + echo "Install the libtool package from ftp.gnu.org or a mirror." + DIE=1 +} + if test "$DIE" -eq 1; then exit 1 fi |