[oe-commits] [meta-openembedded] 44/48: procmail: Use build ldflags when invoking native compile/link

git at git.openembedded.org git at git.openembedded.org
Tue May 29 15:49:54 UTC 2018


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

khem pushed a commit to branch master-next
in repository meta-openembedded.

commit 8b7834aba887c67bd2d01e94b2e867578e691a3f
Author: Khem Raj <raj.khem at gmail.com>
AuthorDate: Tue May 22 21:59:20 2018 -0700

    procmail: Use build ldflags when invoking native compile/link
    
    Some older compilers do not support security flags like -fstack-protector=strong
    and if we do not set this then it will use the target flags to pass here
    which will fail with gcc < 5.x, especially a problem building distros with
    security flags on host with 4.x gcc e.g. ubuntu 14.04
    
    Signed-off-by: Khem Raj <raj.khem at gmail.com>
---
 meta-oe/recipes-support/procmail/procmail_3.22.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-oe/recipes-support/procmail/procmail_3.22.bb b/meta-oe/recipes-support/procmail/procmail_3.22.bb
index aa474ce..6160733 100644
--- a/meta-oe/recipes-support/procmail/procmail_3.22.bb
+++ b/meta-oe/recipes-support/procmail/procmail_3.22.bb
@@ -29,7 +29,7 @@ do_configure() {
     export CFLAGS="${BUILD_CFLAGS}"
     export AR="${BUILD_AR}"
     export AS="${BUILD_AS}"
-    make TARGET_CFLAGS="$TARGET_CFLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64" LDFLAGS0="${LDFLAGS}" autoconf.h
+    make TARGET_CFLAGS="$TARGET_CFLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64" LDFLAGS0="${BUILD_LDFLAGS}" autoconf.h
 }
 
 do_compile() {

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


More information about the Openembedded-commits mailing list