From 97a92e0e6abab652fdf99313b138bfd77d70deb4 Mon Sep 17 00:00:00 2001 From: Jan Tojnar Date: Wed, 4 Mar 2020 01:22:35 +0100 Subject: [PATCH] autogen.sh: Honor NOCONFIGURE Linux distros will usually want to run configure separately so the script should respect their wishes. See also https://people.gnome.org/~walters/docs/build-api.txt --- autogen.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/autogen.sh b/autogen.sh index af5c3d1b..607b795b 100755 --- a/autogen.sh +++ b/autogen.sh @@ -61,4 +61,6 @@ autoheader $LIBTOOLIZE --copy --force --automake automake --add-missing --copy -./configure $* +if test -z "$NOCONFIGURE"; then + ./configure $* +fi