From: cedric Date: Mon, 21 Feb 2011 14:56:49 +0000 (+0000) Subject: efl: turn on cached result, that will reduce your configure time a lot ! X-Git-Tag: accepted/2.0/20130306.224007~195^2~200 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=dcc5e067459dc1d66689f2dc8201de253a96ae7f;p=profile%2Fivi%2Fecore.git efl: turn on cached result, that will reduce your configure time a lot ! git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@57213 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- diff --git a/autogen.sh b/autogen.sh index 0a59462..743d752 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,11 +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 echo "Running autoconf..." ; autoconf || exit 1 @@ -13,5 +7,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