diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-08-06 10:55:26 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-08-12 06:26:15 +0100 |
commit | 2e4f162e615a6cd45086418bdb86e9905caf108e (patch) | |
tree | 18a5ab5d2ca9caf28aec9723e26fba2e8248854a /meta/recipes-support/curl | |
parent | fa91de383e0e42a8905b2b01686c2a643d0a5ad9 (diff) | |
download | poky-2e4f162e615a6cd45086418bdb86e9905caf108e.tar.gz |
curl: Fix reproducibility issue with LDFLAGS
If we add DEBUG_PREFIX_MAP into LDFLAGS, curl-dev is no longer reproducible.
Fix this.
(From OE-Core rev: 3a30b7ad413de0e8f60504ba2be76107e4324640)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/curl')
-rw-r--r-- | meta/recipes-support/curl/curl_7.78.0.bb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-support/curl/curl_7.78.0.bb b/meta/recipes-support/curl/curl_7.78.0.bb index 2e2be66102..dece0babb2 100644 --- a/meta/recipes-support/curl/curl_7.78.0.bb +++ b/meta/recipes-support/curl/curl_7.78.0.bb | |||
@@ -73,6 +73,7 @@ do_install:append:class-target() { | |||
73 | -e 's,--sysroot=${STAGING_DIR_TARGET},,g' \ | 73 | -e 's,--sysroot=${STAGING_DIR_TARGET},,g' \ |
74 | -e 's,--with-libtool-sysroot=${STAGING_DIR_TARGET},,g' \ | 74 | -e 's,--with-libtool-sysroot=${STAGING_DIR_TARGET},,g' \ |
75 | -e 's|${DEBUG_PREFIX_MAP}||g' \ | 75 | -e 's|${DEBUG_PREFIX_MAP}||g' \ |
76 | -e 's|${@" ".join(d.getVar("DEBUG_PREFIX_MAP").split())}||g' \ | ||
76 | ${D}${bindir}/curl-config | 77 | ${D}${bindir}/curl-config |
77 | } | 78 | } |
78 | 79 | ||