commit 0482b2b9ba26f99c194623286dff04895f6a7480 Author: phantomjinx <p.g.richard...@phantomjinx.co.uk> Date: Sun Nov 21 11:40:42 2010 +0000
Build system not recreating configure script * If configure script exists then autoconf does not bother to recreate it unless configure.in has been changed. Due to dynamic versioning against git, the version number is cached and incorrect. * Force autoconf to recreate all files, ensuring a correct build version. autogen.sh | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) --- diff --git a/autogen.sh b/autogen.sh index 4bd6946..5f310ef 100755 --- a/autogen.sh +++ b/autogen.sh @@ -148,7 +148,10 @@ do echo "Running automake --gnu $am_opt ..." ${AUTOMAKE:-automake} --add-missing --gnu $am_opt echo "Running autoconf ..." - ${AUTOCONF:-autoconf} + # Needs to have force to recreate the configure script even if + # it exists so the correct git version is applied as the version + # number. + (${AUTOCONF:-autoconf} --force) ) fi done ------------------------------------------------------------------------------ Beautiful is writing same markup. Internet Explorer 9 supports standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2 & L3. Spend less time writing and rewriting code and more time creating great experiences on the web. Be a part of the beta today http://p.sf.net/sfu/msIE9-sfdev2dev _______________________________________________ gtkpod-cvs2 mailing list gtkpod-cvs2@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gtkpod-cvs2