[oe-commits] Hongxu Jia : libxml-parser-perl: fix do_compile failed with unrecognized option '-Wl, -O1'

git at git.openembedded.org git at git.openembedded.org
Thu Jul 3 16:47:11 UTC 2014


Module: openembedded-core.git
Branch: master
Commit: c67dc89179977b2df80f25ebf66b7e983819a833
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=c67dc89179977b2df80f25ebf66b7e983819a833

Author: Hongxu Jia <hongxu.jia at windriver.com>
Date:   Tue Jul  1 15:51:54 2014 +0800

libxml-parser-perl: fix do_compile failed with unrecognized option '-Wl, -O1'

Use '${CCLD}' as '${LD}' which the cpan was doing.
...
i586-poky-linux-ld: unrecognized option '-Wl,-O1'
i586-poky-linux-ld: use the --help option for usage information
...

Also fix do_configure warnings
...
'--SYSROOT' is not a known MakeMaker parameter name.
'-MARCH' is not a known MakeMaker parameter name.
...

Signed-off-by: Hongxu Jia <hongxu.jia at windriver.com>
Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 meta/recipes-devtools/perl/libxml-parser-perl_2.41.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-devtools/perl/libxml-parser-perl_2.41.bb b/meta/recipes-devtools/perl/libxml-parser-perl_2.41.bb
index 43a8a84..26241e8 100644
--- a/meta/recipes-devtools/perl/libxml-parser-perl_2.41.bb
+++ b/meta/recipes-devtools/perl/libxml-parser-perl_2.41.bb
@@ -13,7 +13,7 @@ SRC_URI[sha256sum] = "b48197cd2265a26c5f016489f11a7b450d8833cb8b3d6a46ee15975740
 
 S = "${WORKDIR}/XML-Parser-${PV}"
 
-EXTRA_CPANFLAGS = "EXPATLIBPATH=${STAGING_LIBDIR} EXPATINCPATH=${STAGING_INCDIR} CC=${CC} LD=${LD} FULL_AR=${AR}"
+EXTRA_CPANFLAGS = "EXPATLIBPATH=${STAGING_LIBDIR} EXPATINCPATH=${STAGING_INCDIR} CC='${CC}' LD='${CCLD}' FULL_AR='${AR}'"
 
 inherit cpan
 



More information about the Openembedded-commits mailing list