summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorChow Loong Jin <hyperair@ubuntu.com>2011-02-21 20:49:27 +0800
committerChow Loong Jin <hyperair@ubuntu.com>2011-02-21 20:49:27 +0800
commit048e0ad6e700af0ce16e8d27af63ca0d59a93da9 (patch)
treec40e85eb9fa29aeab83d675689fc275a105bc035 /autogen.sh
parenta1db3c999b1ad45a2fd0802ff1c65dd2d5615b25 (diff)
Fix up inverted logic in NOCONFIGURE
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh
index 75b8a35..d23ab72 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -77,5 +77,5 @@ if [ $# = 0 ]; then
echo "WARNING: I am going to run configure without any arguments."
fi
-[ -n "$NOCONFIGURE" ] && run ./configure --enable-maintainer-mode $@
+[ -z "$NOCONFIGURE" ] && run ./configure --enable-maintainer-mode $@