diff options
author | Colin Walters <walters@verbum.org> | 2013-01-15 14:39:40 -0500 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2013-01-15 14:39:40 -0500 |
commit | 9f56d200d3675fe3e178001112c563d548376b7a (patch) | |
tree | 6821f3b1f00449305e934dee40c3c5f031bb7a63 | |
parent | 6528ae139506212644dc68a0696580c848e3f8de (diff) |
autogen.sh: Honor NOCONFIGURE environment variable
http://people.gnome.org/~walters/docs/build-api.txt
Signed-off-by: Adam Jackson <ajax@redhat.com>
-rwxr-xr-x | autogen.sh | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -9,5 +9,6 @@ cd $srcdir autoreconf -v --install || exit 1 cd $ORIGDIR || exit $? -$srcdir/configure --enable-maintainer-mode "$@" - +if test -z "$NOCONFIGURE"; then + $srcdir/configure "$@" +fi |