From 02018db6fc289d3e7156b363017f76609513b7b2 Mon Sep 17 00:00:00 2001 From: Uri Lublin Date: Sun, 25 Mar 2012 12:36:06 +0200 Subject: autogen.sh: do not run ./configure if env variable NOCONFIGURE is defined --- autogen.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/autogen.sh b/autogen.sh index 52083e5..568f718 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,4 +1,6 @@ #!/bin/sh autoreconf -fi -./configure $@ +if [ -z "$NOCONFIGURE" ]; then + ./configure $@ +fi -- cgit v1.2.3