diff options
author | Colin Walters <walters@verbum.org> | 2012-01-04 17:37:06 -0500 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2013-01-16 13:18:27 -0500 |
commit | 6504929481eab616f064b5d661a057de74b8b488 (patch) | |
tree | 712d3a976ff4dcd04019a7ca13f1cfc5e99e6675 | |
parent | 0313bab7f16633a6a1b26e195255196fa69ac209 (diff) |
autogen.sh: Implement GNOME Build API
http://people.gnome.org/~walters/docs/build-api.txt
Signed-off-by: Adam Jackson <ajax@redhat.com>
-rwxr-xr-x | autogen.sh | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -9,4 +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 |