blob: 92fa443865d8fda9b2649647b3e86f4b1c805f67 [file] [log] [blame]
Patrick Williamsb58112e2024-03-07 11:16:36 -06001From 78c5fd90a052f95157b3914c708a08b2eeab0154 Mon Sep 17 00:00:00 2001
Andrew Geisslerd159c7f2021-09-02 21:05:58 -05002From: Richard Purdie <richard.purdie@linuxfoundation.org>
3Date: Tue, 4 Feb 2020 18:12:15 +0000
4Subject: [PATCH] mc: Fix manpage date indeterminism
5MIME-Version: 1.0
6Content-Type: text/plain; charset=UTF-8
7Content-Transfer-Encoding: 8bit
8
Andrew Geissler82c905d2020-04-13 13:39:40 -05009The man page date can vary depending upon the host perl, e.g. in Russian
10some versions print 'июня', others 'Июнь' or Polish 'czerwca' or 'czerwiec'.
Andrew Geisslerd159c7f2021-09-02 21:05:58 -050011Rather than depend upon perl-native to fix this, just remove the date from
Andrew Geissler82c905d2020-04-13 13:39:40 -050012the manpages.
13
14RP 2020/2/4
15
16Upstream-Status: Inappropriate [OE specficic reproducibility workaround]
17Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Andrew Geisslerd159c7f2021-09-02 21:05:58 -050018---
19 doc/man/date-of-man-include.am | 2 +-
20 1 file changed, 1 insertion(+), 1 deletion(-)
21
22diff --git a/doc/man/date-of-man-include.am b/doc/man/date-of-man-include.am
Patrick Williamsb58112e2024-03-07 11:16:36 -060023index 96f9f10..d734c5d 100644
Andrew Geisslerd159c7f2021-09-02 21:05:58 -050024--- a/doc/man/date-of-man-include.am
25+++ b/doc/man/date-of-man-include.am
Andrew Geissler82c905d2020-04-13 13:39:40 -050026@@ -1,5 +1,5 @@
27 SED_PARAMETERS = \
28- -e "s/%DATE_OF_MAN_PAGE%/$${MAN_DATE}/g" \
29+ -e "s/%DATE_OF_MAN_PAGE%//g" \
Andrew Geisslerd159c7f2021-09-02 21:05:58 -050030 -e "s/%MAN_VERSION%/@MAN_VERSION@/g" \
Andrew Geissler82c905d2020-04-13 13:39:40 -050031 -e "s{%sysconfdir%{@sysconfdir@{g" \
Patrick Williams864cc432023-02-09 14:54:44 -060032 -e "s{%libexecdir%{@libexecdir@{g" \