commit | 12fd590b5ccf9683e72830b88a6baf87fa27fb68 | [log] [tgz] |
---|---|---|
author | Tomeu Vizoso <tomeu.vizoso@collabora.com> | Thu May 19 10:49:29 2016 +0200 |
committer | Tomeu Vizoso <tomeu.vizoso@collabora.com> | Thu May 19 14:42:39 2016 +0200 |
tree | c563eca72ce51bb7ccc0136499cf2f526be3f84b | |
parent | 7aee5110f0ac355674cfc07055eb08784314547f [diff] [blame] |
build: Skip configure step if is NOCONFIGURE set Allow users of autogen.sh to skip the call to configure, which is needed when building out of tree. Signed-off-by: Tomeu Vizoso <tomeu.vizoso@collabora.com>
diff --git a/autogen.sh b/autogen.sh index 629a257..ec633f3 100755 --- a/autogen.sh +++ b/autogen.sh
@@ -16,4 +16,6 @@ autoreconf -v --install || exit 1 cd $ORIGDIR || exit $? -$srcdir/configure "$@" +if test -z "$NOCONFIGURE"; then + $srcdir/configure "$@" +fi