/pidgin/main: 4e9a7e71354a: Make autogen.sh obey NOCONFIGURE env...
Elliott Sales de Andrade
qulogic at pidgin.im
Sun Jan 20 22:03:27 EST 2013
Changeset: 4e9a7e71354aa78f800ff39417ae9f558b42c717
Author: Elliott Sales de Andrade <qulogic at pidgin.im>
Date: 2013-01-20 22:03 -0500
Branch: default
URL: http://hg.pidgin.im/pidgin/main/rev/4e9a7e71354a
Description:
Make autogen.sh obey NOCONFIGURE env var.
diffstat:
autogen.sh | 7 +++++--
1 files changed, 5 insertions(+), 2 deletions(-)
diffs (14 lines):
diff --git a/autogen.sh b/autogen.sh
--- a/autogen.sh
+++ b/autogen.sh
@@ -160,5 +160,8 @@ run_or_die ${AUTOCONF} ${AUTOCONF_FLAGS}
###############################################################################
# Run configure
###############################################################################
-echo "running ./configure ${CONFIGURE_FLAGS} $@"
-./configure ${CONFIGURE_FLAGS} $@
+if test -z "$NOCONFIGURE"; then
+ echo "running ./configure ${CONFIGURE_FLAGS} $@"
+ ./configure ${CONFIGURE_FLAGS} $@
+fi
+
More information about the Commits
mailing list