From 12fd590b5ccf9683e72830b88a6baf87fa27fb68 Mon Sep 17 00:00:00 2001 From: Tomeu Vizoso Date: Thu, 19 May 2016 10:49:29 +0200 Subject: 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 --- autogen.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'autogen.sh') diff --git a/autogen.sh b/autogen.sh index 629a2575..ec633f3e 100755 --- a/autogen.sh +++ b/autogen.sh @@ -16,4 +16,6 @@ fi autoreconf -v --install || exit 1 cd $ORIGDIR || exit $? -$srcdir/configure "$@" +if test -z "$NOCONFIGURE"; then + $srcdir/configure "$@" +fi -- cgit v1.2.3