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
This commit is contained in:
Jan Tojnar 2020-03-04 01:22:35 +01:00 committed by GitHub
parent 7d3a7e9c29
commit 97a92e0e6a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -61,4 +61,6 @@ autoheader
$LIBTOOLIZE --copy --force --automake
automake --add-missing --copy
./configure $*
if test -z "$NOCONFIGURE"; then
./configure $*
fi