On Fri, 22 Apr 2011, Enlightenment SVN wrote:
> Log: > embryo: update autogen.sh to check configure cache consistency. > > > Author: cedric > Date: 2011-04-22 07:04:42 -0700 (Fri, 22 Apr 2011) > New Revision: 58829 > Trac: http://trac.enlightenment.org/e/changeset/58829 > > Added: > trunk/PROTO/autotools/autogen.sh why did you add autogen.sh in autotools/ ???? Vincent > Modified: > trunk/embryo/autogen.sh > > > Property changes on: trunk/PROTO/autotools/autogen.sh > ___________________________________________________________________ > Added: svn:executable > + * > > Modified: trunk/embryo/autogen.sh > =================================================================== > --- trunk/embryo/autogen.sh 2011-04-22 13:20:06 UTC (rev 58828) > +++ trunk/embryo/autogen.sh 2011-04-22 14:04:42 UTC (rev 58829) > @@ -1,6 +1,7 @@ > #!/bin/sh > > touch README > +touch ABOUT-NLS > > echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS -I m4 || exit 1 > echo "Running autoheader..." ; autoheader || exit 1 > @@ -8,6 +9,28 @@ > 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 > > > ------------------------------------------------------------------------------ > Fulfilling the Lean Software Promise > Lean software platforms are now widely adopted and the benefits have been > demonstrated beyond question. Learn why your peers are replacing JEE > containers with lightweight application servers - and what you can gain > from the move. http://p.sf.net/sfu/vmware-sfemails > _______________________________________________ > enlightenment-svn mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/enlightenment-svn > > ------------------------------------------------------------------------------ Fulfilling the Lean Software Promise Lean software platforms are now widely adopted and the benefits have been demonstrated beyond question. Learn why your peers are replacing JEE containers with lightweight application servers - and what you can gain from the move. http://p.sf.net/sfu/vmware-sfemails _______________________________________________ enlightenment-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
