diff options
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/autogen.sh b/autogen.sh index 1a114eab0..4c02b8af4 100755 --- a/autogen.sh +++ b/autogen.sh @@ -25,5 +25,7 @@ automake --add-missing # configure -echo "./configure $*" -./configure $* +if test x$NOCONFIGURE = x; then + echo "./configure $*" + ./configure $* +fi |