1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2024-12-25 23:21:26 +03:00

allow setting $OBJ_DIR to specify building in a subdir

This commit is contained in:
Elliot Lee 1998-11-20 05:12:04 +00:00
parent 8cc0d1f889
commit aa873f7b76

View File

@ -45,7 +45,13 @@ libtoolize --copy --force
aclocal aclocal
automake --add-missing automake --add-missing
autoconf autoconf
if [ -z "$OBJ_DIR" ]; then
./configure "$@" ./configure "$@"
else
mkdir -p "$OBJ_DIR"
cd "$OBJ_DIR"
../configure "$@"
fi
echo echo
echo "Now type 'make' to compile gnome-xml." echo "Now type 'make' to compile gnome-xml."