From 5024eab7489a82c2b5aa81390134fe7132e6e085 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Tue, 26 Apr 2005 22:55:56 +0000 Subject: [PATCH] allow for setting of env var to prevent running ./configure like the older autogen scripts allowed SVN revision: 14386 --- legacy/ecore/autogen.sh | 5 +++-- legacy/edje/autogen.sh | 5 +++-- legacy/eet/autogen.sh | 5 +++-- legacy/embryo/autogen.sh | 5 +++-- legacy/emotion/autogen.sh | 5 +++-- legacy/evas/autogen.sh | 5 +++-- 6 files changed, 18 insertions(+), 12 deletions(-) diff --git a/legacy/ecore/autogen.sh b/legacy/ecore/autogen.sh index 464d901636..952505ae5e 100755 --- a/legacy/ecore/autogen.sh +++ b/legacy/ecore/autogen.sh @@ -11,5 +11,6 @@ echo "Running aclocal..."; aclocal $ACLOCAL_FLAGS -I m4 \ && echo "Running libtoolize..."; (libtoolize --automake || glibtoolize --automake) \ && echo "Running automake..."; automake --add-missing --copy --gnu -### If you want this, uncomment it. -./configure "$@" +if [ -z "$NOCONFIGURE" ]; then + ./configure "$@" +fi diff --git a/legacy/edje/autogen.sh b/legacy/edje/autogen.sh index 9d8816d85d..72e4772b56 100755 --- a/legacy/edje/autogen.sh +++ b/legacy/edje/autogen.sh @@ -9,5 +9,6 @@ echo "Running aclocal..."; aclocal $ACLOCAL_FLAGS -I m4 \ && echo "Running libtoolize..."; (libtoolize --automake || glibtoolize --automake) \ && echo "Running automake..."; automake --add-missing --copy --gnu -### If you want this, uncomment it. -./configure "$@" +if [ -z "$NOCONFIGURE" ]; then + ./configure "$@" +fi diff --git a/legacy/eet/autogen.sh b/legacy/eet/autogen.sh index 464d901636..952505ae5e 100755 --- a/legacy/eet/autogen.sh +++ b/legacy/eet/autogen.sh @@ -11,5 +11,6 @@ echo "Running aclocal..."; aclocal $ACLOCAL_FLAGS -I m4 \ && echo "Running libtoolize..."; (libtoolize --automake || glibtoolize --automake) \ && echo "Running automake..."; automake --add-missing --copy --gnu -### If you want this, uncomment it. -./configure "$@" +if [ -z "$NOCONFIGURE" ]; then + ./configure "$@" +fi diff --git a/legacy/embryo/autogen.sh b/legacy/embryo/autogen.sh index 464d901636..952505ae5e 100755 --- a/legacy/embryo/autogen.sh +++ b/legacy/embryo/autogen.sh @@ -11,5 +11,6 @@ echo "Running aclocal..."; aclocal $ACLOCAL_FLAGS -I m4 \ && echo "Running libtoolize..."; (libtoolize --automake || glibtoolize --automake) \ && echo "Running automake..."; automake --add-missing --copy --gnu -### If you want this, uncomment it. -./configure "$@" +if [ -z "$NOCONFIGURE" ]; then + ./configure "$@" +fi diff --git a/legacy/emotion/autogen.sh b/legacy/emotion/autogen.sh index 9d8816d85d..72e4772b56 100755 --- a/legacy/emotion/autogen.sh +++ b/legacy/emotion/autogen.sh @@ -9,5 +9,6 @@ echo "Running aclocal..."; aclocal $ACLOCAL_FLAGS -I m4 \ && echo "Running libtoolize..."; (libtoolize --automake || glibtoolize --automake) \ && echo "Running automake..."; automake --add-missing --copy --gnu -### If you want this, uncomment it. -./configure "$@" +if [ -z "$NOCONFIGURE" ]; then + ./configure "$@" +fi diff --git a/legacy/evas/autogen.sh b/legacy/evas/autogen.sh index 464d901636..952505ae5e 100755 --- a/legacy/evas/autogen.sh +++ b/legacy/evas/autogen.sh @@ -11,5 +11,6 @@ echo "Running aclocal..."; aclocal $ACLOCAL_FLAGS -I m4 \ && echo "Running libtoolize..."; (libtoolize --automake || glibtoolize --automake) \ && echo "Running automake..."; automake --add-missing --copy --gnu -### If you want this, uncomment it. -./configure "$@" +if [ -z "$NOCONFIGURE" ]; then + ./configure "$@" +fi