diff options
author | Sascha Schumann <sas@php.net> | 2001-05-23 19:10:06 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2001-05-23 19:10:06 +0000 |
commit | 19a285419a1404d058654501a0f906cea06e8571 (patch) | |
tree | 23d45010a4eb127088a59a999668dc76b02f98e7 /build | |
parent | 14ac3d74b9689093397d8d2d782f81678c62a7ec (diff) | |
download | php-git-19a285419a1404d058654501a0f906cea06e8571.tar.gz |
$libtool already contains the full path to libtool.
Diffstat (limited to 'build')
-rwxr-xr-x | build/buildcheck.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/buildcheck.sh b/build/buildcheck.sh index 3f5f6d40e7..9833eb3c9e 100755 --- a/build/buildcheck.sh +++ b/build/buildcheck.sh @@ -16,7 +16,7 @@ # | Sascha Schumann <sascha@schumann.cx> | # +----------------------------------------------------------------------+ # -# $Id: buildcheck.sh,v 1.8 2001-05-06 18:51:21 sas Exp $ +# $Id: buildcheck.sh,v 1.9 2001-05-23 19:10:06 sas Exp $ # echo "buildconf: checking installation..." @@ -81,7 +81,7 @@ exit 1 fi am_prefix=`which automake | sed -e 's#/[^/]*/[^/]*$##'` -lt_prefix=`which $libtool | sed -e 's#/[^/]*/[^/]*$##'` +lt_prefix=`echo $libtool | sed -e 's#/[^/]*/[^/]*$##'` if test "$am_prefix" != "$lt_prefix"; then echo "WARNING: automake and libtool are installed in different" echo " directories. This may cause aclocal to fail." |