[oe-commits] [openembedded-core] 32/33: gmp: improve reproducibility

git at git.openembedded.org git at git.openembedded.org
Tue Aug 15 23:20:07 UTC 2017


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 b0fb10f7b55625fdd0c29963472b171beb8b689e
Author: Juro Bystricky <juro.bystricky at intel.com>
AuthorDate: Tue Aug 15 15:01:30 2017 -0700

    gmp: improve reproducibility
    
    Remove references to the host build system from generated/packaged
    header file gmp.h. The file ends up in two different packages (libgmp-dev,
    libgmp-dbg). Rather then modifying the file twice in two different
    destinations after the installation, we modify the file gmp.h only once,
    but before the installation.
    
    [YOCTO #11922]
    
    Signed-off-by: Juro Bystricky <juro.bystricky at intel.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/recipes-support/gmp/gmp_6.1.2.bb | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-support/gmp/gmp_6.1.2.bb b/meta/recipes-support/gmp/gmp_6.1.2.bb
index 5e65075..b008710 100644
--- a/meta/recipes-support/gmp/gmp_6.1.2.bb
+++ b/meta/recipes-support/gmp/gmp_6.1.2.bb
@@ -25,8 +25,11 @@ EXTRA_OECONF_mipsarchr6_append = " --disable-assembly"
 PACKAGES =+ "libgmpxx"
 FILES_libgmpxx = "${libdir}/libgmpxx${SOLIBS}"
 
-do_install_append_class-target() {
-        sed -i "s|--sysroot=${STAGING_DIR_HOST}||g" ${D}${includedir}/gmp.h
+do_install_prepend_class-target() {
+        sed -i \
+        -e "s|--sysroot=${STAGING_DIR_HOST}||g" \
+        -e "s|${DEBUG_PREFIX_MAP}||g" \
+         ${B}/gmp.h
 }
 
 SSTATE_SCAN_FILES += "gmp.h"

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


More information about the Openembedded-commits mailing list