From: cedric Date: Thu, 14 Apr 2011 14:03:46 +0000 (+0000) Subject: autogen: improve detection of parameter change. X-Git-Tag: submit/trunk/20120815.180907~656 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6e589b68164f5e0748d9f27af6226721f334873b;p=profile%2Fivi%2Fedje.git autogen: improve detection of parameter change. git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@58667 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- diff --git a/autogen.sh b/autogen.sh index 6499736..3563ad3 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,13 +1,33 @@ #!/bin/sh -touch README - echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS -I m4 || exit 1 echo "Running autoheader..." ; autoheader || exit 1 echo "Running autoconf..." ; autoconf || exit 1 echo "Running libtoolize..." ; (libtoolize --copy --automake || glibtoolize --automake) || exit 1 echo "Running automake..." ; automake --add-missing --copy --gnu || exit 1 +W=0 + +rm -f config.cache-env.tmp +echo "OLD_PARM=\"$@\"" >> config.cache-env.tmp +echo "OLD_CFLAGS=\"$CFLAGS\"" >> config.cache-env.tmp +echo "OLD_PATH=\"$PATH\"" >> config.cache-env.tmp +echo "OLD_PKG_CONFIG_PATH=\"$PKG_CONFIG_PATH\"" >> config.cache-env.tmp +echo "OLD_LDFLAGS=\"$LDFLAGS\"" >> config.cache-env.tmp + +cmp config.cache-env.tmp config.cache-env >> /dev/null +if [ $? -ne 0 ]; then + W=1; +fi + +if [ $W -ne 0 ]; then + echo "Cleaning configure cache..."; + rm -f config.cache config.cache-env + mv config.cache-env.tmp config.cache-env +else + rm -f config.cache-env.tmp +fi + if [ -z "$NOCONFIGURE" ]; then ./configure -C "$@" fi