diff options
author | Mark Hatle <mark.hatle@windriver.com> | 2014-11-07 13:21:57 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-11-09 10:17:02 +0000 |
commit | 21c2cfff14442cf224e3568bdbb9bcd4070be247 (patch) | |
tree | f9f9311d75c758f288fb2256d4b2886293e5c54f /meta/recipes-devtools/gcc/gcc-cross.inc | |
parent | b171f30701aae36f8512ed0b7472984671589c5f (diff) | |
download | openembedded-core-21c2cfff14442cf224e3568bdbb9bcd4070be247.tar.gz openembedded-core-21c2cfff14442cf224e3568bdbb9bcd4070be247.tar.bz2 openembedded-core-21c2cfff14442cf224e3568bdbb9bcd4070be247.zip |
gcc: Fix intermittent failures during configure
If configure or any of the components it uses from the shared work directory
change, do_configure may fail.
An existing do_preconfigure was created to handle these conditions, but
a 'sed' operation was missed, and a call to gnu-configize was also missed.
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/gcc/gcc-cross.inc')
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-cross.inc | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-cross.inc b/meta/recipes-devtools/gcc/gcc-cross.inc index 9147acd1a8..97929501e8 100644 --- a/meta/recipes-devtools/gcc/gcc-cross.inc +++ b/meta/recipes-devtools/gcc/gcc-cross.inc @@ -32,10 +32,6 @@ EXTRA_OECONF_PATHS = "\ ARCH_FLAGS_FOR_TARGET += "-isystem${STAGING_DIR_TARGET}${target_includedir}" -do_configure_prepend () { - sed -i 's/BUILD_INFO=info/BUILD_INFO=/' ${S}/gcc/configure -} - do_compile () { export CC="${BUILD_CC}" export AR_FOR_TARGET="${TARGET_SYS}-ar" |