summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2011-09-19 16:45:43 -0500
committerDan Williams <dcbw@redhat.com>2011-09-19 16:45:43 -0500
commit833bc16d121e783888e4f9a908ce102debf43570 (patch)
treef0e1dd86fca08bc5604f5aa8c477e7a24b29c2e9 /autogen.sh
parent4ac8b1cf8eb3b158098f67bf13c9aa8d9e6e7980 (diff)
downloadNetworkManager-833bc16d121e783888e4f9a908ce102debf43570.tar.gz
build: honor NOCONFIGURE (bgo #659354)
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 67816be509..c0194020f0 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -17,6 +17,8 @@ PKG_NAME=NetworkManager
gtkdocize || exit 1
autopoint --force
AUTOPOINT='intltoolize --automake --copy' autoreconf --force --install --verbose
- ./configure --enable-maintainer-mode $@
+ if test -z "$NOCONFIGURE"; then
+ ./configure --enable-maintainer-mode $@
+ fi
)