summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2010-06-29 11:04:09 -0400
committerColin Walters <walters@verbum.org>2010-06-29 11:04:09 -0400
commitdfc2ba9f1eb7d8c16bad4a5eb231caa3842a8a60 (patch)
tree39e40f8677b7b9a72fe6c904e9ec1bc22c08d612 /autogen.sh
parent3edb37f792401261a137e5f2f5b1411b7d0e06e7 (diff)
downloaddconf-dfc2ba9f1eb7d8c16bad4a5eb231caa3842a8a60.tar.gz
[autogen.sh] Support NOCONFIGURE, like gnome-common
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh
index cc1f279..9c27749 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -19,4 +19,7 @@ CFLAGS=${CFLAGS=-ggdb -Werror}
LDFLAGS=${LDFLAGS=-Wl,-O1}
export CFLAGS LDFLAGS
-./configure "$@"
+if test -z "$NOCONFIGURE"; then
+ ./configure "$@"
+fi
+