projects
/
profile
/
ivi
/
emotion.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
deb552e
)
allow for setting of env var to prevent running ./configure like the older autogen...
author
vapier
<vapier>
Tue, 26 Apr 2005 22:55:56 +0000
(22:55 +0000)
committer
vapier
<vapier@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Tue, 26 Apr 2005 22:55:56 +0000
(22:55 +0000)
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/e17/libs/emotion@14386
7cbeb6ba
-43b4-40fd-8cce-
4c39aea84d33
autogen.sh
patch
|
blob
|
history
diff --git
a/autogen.sh
b/autogen.sh
index
9d8816d
..
72e4772
100755
(executable)
--- a/
autogen.sh
+++ b/
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