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:
parent
8cc0d1f889
commit
aa873f7b76
@ -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."
|
||||||
|
Loading…
Reference in New Issue
Block a user