summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2010-06-29 10:47:57 -0400
committerColin Walters <walters@verbum.org>2010-06-29 10:47:57 -0400
commit3623c91b8b93fe0527c324ca95dd4be5bba75cb8 (patch)
treea8b73e6ec4e1bdaf7fcf54dbf4121eef73ad1b03 /autogen.sh
parent99e3b7b014a9491ce64ae74b533a7e4681c3a87c (diff)
downloadlibgee-3623c91b8b93fe0527c324ca95dd4be5bba75cb8.tar.gz
[autogen.sh] Support NOCONFIGURE, like gnome-common
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh
index bf76638..b30e288 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -12,4 +12,6 @@ touch ChangeLog
autoreconf -v --install || exit 1
cd $ORIGDIR || exit $?
-$srcdir/configure "$@"
+if test -z "$NOCONFIGURE"; then
+ $srcdir/configure "$@"
+fi