mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-02 01:18:08 +01:00
21 lines
610 B
Diff
21 lines
610 B
Diff
SPDX-FileCopyrightText: 2022 Samuel Tyler <samuel@samuelt.me>
|
|
|
|
SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
help2man manpages hardcode the current month and date into the generated
|
|
manpage.
|
|
|
|
This makes manpages not reproducible.
|
|
|
|
diff --color -ru help2man.PL help2man.PL
|
|
--- help2man-1.36.4/help2man.PL 2022-04-02 10:20:20.100234930 +1100
|
|
+++ help2man-1.36.4/help2man.PL 2022-04-02 10:20:21.866247540 +1100
|
|
@@ -303,7 +303,7 @@
|
|
$_, $ARGV[0]
|
|
} $help_option, $version_option;
|
|
|
|
-my $date = strftime "%B %Y", localtime;
|
|
+my $date = "";
|
|
(my $program = $ARGV[0]) =~ s!.*/!!;
|
|
my $package = $program;
|
|
my $version;
|