mirror of
https://git.yoctoproject.org/poky
synced 2026-02-14 20:53:03 +01:00
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] (From OE-Core rev: 693b42115e2f61abc9ca6096445dc494648cacb6) Signed-off-by: Juro Bystricky <juro.bystricky@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
7d66c9cbf1
commit
ac2b82fedc
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user