diff options
author | Colin Walters <walters@verbum.org> | 2011-12-27 12:19:50 -0500 |
---|---|---|
committer | Colin Walters <walters@verbum.org> | 2011-12-27 12:19:50 -0500 |
commit | f8bfce4e92e89427489ebad9284872aff4742f37 (patch) | |
tree | e3e9d4cac704884deb1bcfa381b9e6de726e2393 /autogen.sh | |
parent | 3634f870de977f38ae3ea81ee0abef4e7e17e245 (diff) | |
download | libxslt-f8bfce4e92e89427489ebad9284872aff4742f37.tar.gz libxslt-f8bfce4e92e89427489ebad9284872aff4742f37.tar.bz2 libxslt-f8bfce4e92e89427489ebad9284872aff4742f37.zip |
autogen.sh: Honor NOCONFIGURE environment variable
See http://people.gnome.org/~walters/docs/build-api.txt
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -62,8 +62,9 @@ if test x$OBJ_DIR != x; then cd "$OBJ_DIR" fi -echo Running configure "$@" ... -$srcdir/configure "$@" - -echo -echo "Now type 'make' to compile libxslt." +if test -z "$NOCONFIGURE"; then + echo Running configure "$@" ... + $srcdir/configure "$@" + echo + echo "Now type 'make' to compile libxslt." +fi |