summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorMichael Terry <michael.terry@canonical.com>2013-01-28 12:38:04 -0500
committerMichael Terry <michael.terry@canonical.com>2013-01-28 12:38:04 -0500
commitd2c707d6034a5b284c7f0d8799ac738c716b43a1 (patch)
tree121704d3b8790ecdc05473fd0bb91a890fbfbcd7 /autogen.sh
parentd68071e2f308dc83988a3d8be4373aaa976072e8 (diff)
downloadlightdm-d2c707d6034a5b284c7f0d8799ac738c716b43a1.tar.gz
Ape gnome-autogen's use of NOCONFIGURE to control whether ./autogen.sh runs ./configure or not
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 77900f60..b08190da 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -8,4 +8,6 @@ aclocal
autoconf
autoheader
automake --add-missing --copy --foreign
-./configure $@
+if [ -z "$NOCONFIGURE" ]; then
+ ./configure $@
+fi