summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorCedric BAIL <cedric.bail@free.fr>2011-02-21 14:56:49 +0000
committerCedric BAIL <cedric.bail@free.fr>2011-02-21 14:56:49 +0000
commit1cb1d2372ffb2802fbe99ac5ca5d3db8ea218701 (patch)
tree503865f9c13b44e18ba5b68b37e8d7549b3cf741 /autogen.sh
parent77e9b7bd0c6734dbc3ee5fa80ecc9fdd216786df (diff)
downloadelementary-1cb1d2372ffb2802fbe99ac5ca5d3db8ea218701.tar.gz
efl: turn on cached result, that will reduce your configure time a lot !
SVN revision: 57213
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh7
1 files changed, 1 insertions, 6 deletions
diff --git a/autogen.sh b/autogen.sh
index 0a5946268..2d8df88b1 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -1,10 +1,5 @@
#!/bin/sh
-rm -rf autom4te.cache
-rm -f aclocal.m4 ltmain.sh
-
-touch README
-
echo "Running autopoint..." ; autopoint -f || :
echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS -I m4 || exit 1
echo "Running autoheader..." ; autoheader || exit 1
@@ -13,5 +8,5 @@ echo "Running libtoolize..." ; (libtoolize --copy --automake || glibtoolize --au
echo "Running automake..." ; automake --add-missing --copy --gnu || exit 1
if [ -z "$NOCONFIGURE" ]; then
- ./configure "$@"
+ ./configure -C "$@"
fi