[OE-core] [PATCH v2 2/3] gcc-source.inc: make gnu-configize ignore errors from autoconf

Andre McCurdy armccurdy at gmail.com
Wed May 27 21:06:12 UTC 2015


Recent changes to gnu-configize mean that errors returned when running
autoconf are now reported by default. gcc-source do_preconfigure seems
to be a special case which relies on errors being ignored.

Signed-off-by: Andre McCurdy <armccurdy at gmail.com>
---
 meta/recipes-devtools/gcc/gcc-source.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-devtools/gcc/gcc-source.inc b/meta/recipes-devtools/gcc/gcc-source.inc
index 529b8e0..425486d 100644
--- a/meta/recipes-devtools/gcc/gcc-source.inc
+++ b/meta/recipes-devtools/gcc/gcc-source.inc
@@ -24,7 +24,7 @@ PACKAGES = ""
 
 python do_preconfigure () {
     import subprocess
-    cmd = d.expand('cd ${S} && PATH=${PATH} gnu-configize')
+    cmd = d.expand('cd ${S} && PATH=${PATH} gnu-configize --continue')
     subprocess.check_output(cmd, stderr=subprocess.STDOUT, shell=True)
     # See 0044-gengtypes.patch, we need to regenerate this file
     bb.utils.remove(d.expand("${S}/gcc/gengtype-lex.c"))
-- 
1.9.1




More information about the Openembedded-core mailing list