[oe-commits] [openembedded-core] 117/122: nss: pay attention to CFLAGS

git at git.openembedded.org git at git.openembedded.org
Mon Dec 4 17:26:35 UTC 2017


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

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

commit 7484c62f88311dbc1e9ade524af31d04e6035bf4
Author: Joe Slater <jslater at windriver.com>
AuthorDate: Wed Nov 15 10:54:09 2017 -0800

    nss: pay attention to CFLAGS
    
    nss ignores CFLAGS so we suggest them via CC.
    
    Signed-off-by: Joe Slater <jslater at windriver.com>
    Signed-off-by: Ross Burton <ross.burton at intel.com>
    (cherry picked from commit 95b65eefe7eb001752a37d1015bbf9be63bfd6bb)
    Signed-off-by: Armin Kuster <akuster808 at gmail.com>
---
 meta/recipes-support/nss/nss_3.31.1.bb | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/meta/recipes-support/nss/nss_3.31.1.bb b/meta/recipes-support/nss/nss_3.31.1.bb
index 588708f..2bb9bdb 100644
--- a/meta/recipes-support/nss/nss_3.31.1.bb
+++ b/meta/recipes-support/nss/nss_3.31.1.bb
@@ -104,7 +104,12 @@ do_compile() {
     # We can modify CC in the environment, but if we set it via an
     # argument to make, nsinstall, a host program, will also build with it!
     #
-    export CC="${CC} -g"
+    # nss pretty much does its own thing with CFLAGS, so we put them into CC.
+    # Optimization will get clobbered, but most of the stuff will survive.
+    # The motivation for this is to point to the correct place for debug
+    # source files and CFLAGS does that.  Nothing uses CCC.
+    #
+    export CC="${CC} ${CFLAGS}"
     make -C ./nss CCC="${CXX} -g" \
         OS_TEST=${OS_TEST} \
         RPATH="${RPATH}"

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


More information about the Openembedded-commits mailing list