[oe-commits] [openembedded-core] 02/32: gcc: Do not use --with-linker-hash-style if LINKER_HASH_STYLE is empty

git at git.openembedded.org git at git.openembedded.org
Mon Mar 19 23:05:36 UTC 2018


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit e176ab07d1afbb5d7e80d39d49b0f68738509c18
Author: Khem Raj <raj.khem at gmail.com>
AuthorDate: Fri Mar 16 20:40:32 2018 -0700

    gcc: Do not use --with-linker-hash-style if LINKER_HASH_STYLE is empty
    
    We allow to set LINKER_HASH_STYLE to be empty so this would fail
    since --with-linker-hash-style needs an argument and cant be empty
    
    Signed-off-by: Khem Raj <raj.khem at gmail.com>
    Signed-off-by: Ross Burton <ross.burton at intel.com>
---
 meta/recipes-devtools/gcc/gcc-7.3.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-devtools/gcc/gcc-7.3.inc b/meta/recipes-devtools/gcc/gcc-7.3.inc
index b0cba27..d968c32 100644
--- a/meta/recipes-devtools/gcc/gcc-7.3.inc
+++ b/meta/recipes-devtools/gcc/gcc-7.3.inc
@@ -101,7 +101,7 @@ EXTRA_OECONF_BASE = "\
     --disable-bootstrap \
     --disable-libmudflap \
     --with-system-zlib \
-    --with-linker-hash-style=${LINKER_HASH_STYLE} \
+    ${@'--with-linker-hash-style=${LINKER_HASH_STYLE}' if '${LINKER_HASH_STYLE}' else ''} \
     --enable-linker-build-id \
     --with-ppl=no \
     --with-cloog=no \

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list