[beast: 3/11] BUILD: autogen.sh: avoid calling ./configure if $NOCONFIGURE is set



commit b161fd11e4f35ec0aafc17ec5e95df00d0f76661
Author: Tim Janik <timj gnu org>
Date:   Sun Oct 30 01:50:35 2016 +0200

    BUILD: autogen.sh: avoid calling ./configure if $NOCONFIGURE is set
    
    For a use case, see https://github.com/cgwalters/build-api
    
    Signed-off-by: Tim Janik <timj gnu org>

 autogen.sh |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/autogen.sh b/autogen.sh
index 6a457e3..ce80168 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -4,6 +4,6 @@ set -xe # be verbose and abort on errors
 
 rm -rf autom4te.cache/ config.cache
 
-autoreconf -vfsi
+autoreconf --verbose --force --symlink --install
 
-./configure --enable-devel-mode=yes "$@"
+test -n "$NOCONFIGURE" || "./configure" "$@"


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]