use $srcdir instead of the $OBJ_DIR hack

This commit is contained in:
Elliot Lee 1998-11-25 16:34:23 +00:00
parent a425e6b5c2
commit 9cb5eb75f8

View File

@ -1,6 +1,10 @@
#!/bin/sh
# Run this to generate all the initial makefiles, etc.
srcdir=`dirname $0`
test -z "$srcdir" && srcdir=.
pushd $srcdir
PROJECT=Gtk+
TEST_TYPE=-d
FILE=gdk
@ -56,14 +60,9 @@ aclocal $ACLOCAL_FLAGS
automake $am_opt
autoconf
popd
if [ -z "$OBJ_DIR" ]; then
./configure "$@"
else
mkdir -p "$OBJ_DIR"
cd "$OBJ_DIR"
../configure "$@"
fi
$srcdir/configure "$@"
echo
echo "Now type 'make' to compile $PROJECT."