summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2024-09-09 22:50:27 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2024-09-11 11:56:37 +0100
commita14e58799ec51e0ea481db4537744ec719c901c6 (patch)
tree4b5b8a2de0b8af0e7253fd0d3a45ba2f0cae0cd2
parentec9fb6eaa5fa4b87c634e00dd8fb05260a1ac632 (diff)
downloadpoky-a14e58799ec51e0ea481db4537744ec719c901c6.tar.gz
libedit: Make docs generation deterministic
The presence or lack of nroff on the host was changing the doc type. Stop the code from looking at host paths outside HOSTTOOLS and hence cause the doc type to be deterministic and reproducible. (From OE-Core rev: 918e2b266eba6779f19f65349f85caa880ba45e7) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-devtools/libedit/libedit_20240808-3.1.bb7
1 files changed, 7 insertions, 0 deletions
diff --git a/meta/recipes-devtools/libedit/libedit_20240808-3.1.bb b/meta/recipes-devtools/libedit/libedit_20240808-3.1.bb
index 932e5a1485..bf6ec8ebd3 100644
--- a/meta/recipes-devtools/libedit/libedit_20240808-3.1.bb
+++ b/meta/recipes-devtools/libedit/libedit_20240808-3.1.bb
@@ -15,4 +15,11 @@ SRC_URI = "http://www.thrysoee.dk/editline/${BP}.tar.gz \
15 " 15 "
16SRC_URI[sha256sum] = "5f0573349d77c4a48967191cdd6634dd7aa5f6398c6a57fe037cc02696d6099f" 16SRC_URI[sha256sum] = "5f0573349d77c4a48967191cdd6634dd7aa5f6398c6a57fe037cc02696d6099f"
17 17
18# configure hardcodes /usr/bin search path bypassing HOSTTOOLS
19CACHED_CONFIGUREVARS += "ac_cv_path_NROFF=/bin/false"
20
21# remove at next version upgrade or when output changes
22PR = "r1"
23HASHEQUIV_HASH_VERSION .= ".1"
24
18BBCLASSEXTEND = "native nativesdk" 25BBCLASSEXTEND = "native nativesdk"