diff options
author | Hongxu Jia <hongxu.jia@windriver.com> | 2018-01-12 03:11:22 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-01-19 12:37:13 +0000 |
commit | 03352b1ce34536ca7fe98959fe2f59c5708e773a (patch) | |
tree | 98d8f11b27159139b8d504dec4fd3abb171bd5bb /meta/recipes-extended/wget/wget.inc | |
parent | d94199ef3b2b91a7a3a33ae885bf76721c442e9f (diff) | |
download | poky-03352b1ce34536ca7fe98959fe2f59c5708e773a.tar.gz |
wget: improve reproducibility
Remove build host references from the internally
generated file version.c. The references get compiled into
executables, which leads to non-reproducible builds.
The removed references (--sysroot, -fdebug-prefix-map) were
only used as part of the `wget --version' which do not have
side effect.
(From OE-Core rev: c7fc89c136311c69bc96edf110e988f1be691781)
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/wget/wget.inc')
-rw-r--r-- | meta/recipes-extended/wget/wget.inc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/recipes-extended/wget/wget.inc b/meta/recipes-extended/wget/wget.inc index 1299edb720..e374e6d8ab 100644 --- a/meta/recipes-extended/wget/wget.inc +++ b/meta/recipes-extended/wget/wget.inc | |||
@@ -10,6 +10,9 @@ inherit autotools gettext texinfo update-alternatives pkgconfig | |||
10 | EXTRA_OECONF = "--with-ssl=gnutls --disable-rpath --disable-iri \ | 10 | EXTRA_OECONF = "--with-ssl=gnutls --disable-rpath --disable-iri \ |
11 | --without-libgnutls-prefix ac_cv_header_uuid_uuid_h=no" | 11 | --without-libgnutls-prefix ac_cv_header_uuid_uuid_h=no" |
12 | 12 | ||
13 | EXTRA_OEMAKE += 'TOOLCHAIN_OPTIONS="${TOOLCHAIN_OPTIONS}" \ | ||
14 | DEBUG_PREFIX_MAP="${DEBUG_PREFIX_MAP}"' | ||
15 | |||
13 | ALTERNATIVE_${PN} = "wget" | 16 | ALTERNATIVE_${PN} = "wget" |
14 | ALTERNATIVE_${PN}_class-nativesdk = "" | 17 | ALTERNATIVE_${PN}_class-nativesdk = "" |
15 | ALTERNATIVE_PRIORITY = "100" | 18 | ALTERNATIVE_PRIORITY = "100" |