eglibc: touch configure files to prevent them from being regenerated.
authorLeon Woestenberg <leon.woestenberg@gmail.com>
Thu, 6 Sep 2007 17:56:26 +0000 (17:56 +0000)
committerLeon Woestenberg <leon.woestenberg@gmail.com>
Thu, 6 Sep 2007 17:56:26 +0000 (17:56 +0000)
packages/glibc/eglibc-initial_svn.bb
packages/glibc/eglibc-intermediate_svn.bb
packages/glibc/eglibc_svn.bb

index 02ba4c6..ae3f0d2 100644 (file)
@@ -10,6 +10,7 @@ do_configure () {
        sed -ie 's,{ (exit 1); exit 1; }; },{ (exit 0); }; },g' ${S}/configure
        chmod +x ${S}/configure
        unset CFLAGS
+       find ${S} -name "configure" | xargs touch
        CC="${BUILD_CC}" CPP="${BUILD_CPP}" LD="${BUILD_LD}" ${S}/configure --host=${TARGET_SYS} --build=${BUILD_SYS} \
                --without-cvs --disable-sanity-checks \
                --with-headers=${CROSS_DIR}/${TARGET_SYS}/include \
index c26f649..5ecbdb6 100644 (file)
@@ -6,6 +6,7 @@ do_install () {
 
 # gcc uses -Werror which break on a "you have no thumb interwork" _warning_
 do_configure_prepend() {
+       find ${S} -name "configure" | xargs touch
        sed -i s:-Werror:: ${S}/configure
 }
 
index 98b9556..8dedfe5 100644 (file)
@@ -46,7 +46,7 @@ EXTRA_OECONF = "--enable-kernel=${OLDEST_KERNEL} \
                 --without-selinux \
                 ${GLIBC_EXTRA_OECONF}"
 
-EXTRA_OECONF += "${@get_glibc_fpu_setting(bb, d)}"
+EXTRA_OECONF += "${@get_eglibc_fpu_setting(bb, d)}"
 
 do_configure_prepend() {
         if test -d ${WORKDIR}/trunk/ports ; then
@@ -64,7 +64,7 @@ do_configure () {
                 exit 1
         fi
         (cd ${S} && gnu-configize) || die "failure in running gnu-configize"
-        find ${WORKDIR} -name "configure" | xargs touch
+        find ${S} -name "configure" | xargs touch
         CPPFLAGS="" oe_runconf
 }