(svn r9340) [Config] -Fix: on some systems $_ was set to /usr/bin/make; filter for this (tnx peter1138)

This commit is contained in:
truelight 2007-03-19 18:37:23 +00:00
parent b0beea9989
commit 45bebff1eb
1 changed files with 5 additions and 1 deletions

6
configure vendored
View File

@ -3,7 +3,11 @@
CONFIGURE_EXECUTABLE="$_"
# On *nix systems those two are equal when ./configure is done
if [ "$0" != "$CONFIGURE_EXECUTABLE" ]; then
CONFIGURE_EXECUTABLE="$CONFIGURE_EXECUTABLE $0"
if [ -z "`echo $CONFIGURE_EXECUTABLE | grep make`" ]; then
CONFIGURE_EXECUTABLE="$0"
else
CONFIGURE_EXECUTABLE="$CONFIGURE_EXECUTABLE $0"
fi
fi
# Find out where configure is (in what dir)
ROOT_DIR="`dirname $0`"