diff options
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh index c76bf8b07b..b5f6ec4a97 100755 --- a/autogen.sh +++ b/autogen.sh @@ -15,4 +15,6 @@ MAKEFLAGS="" autoreconf -v --install || exit 1 -"$srcdir"/configure "$@" +if test -z "$NOCONFIGURE"; then + "$srcdir"/configure "$@" +fi |