Skip to content

Commit 99ea012

Browse files
committed
Depend on SOURCE_DATE_EPOCH for manpage generation
The date for the manpage is provided by the build system, which ensures the build is repeatable.
1 parent 49e2ee5 commit 99ea012

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

Makefile.am

+2-6
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,6 @@ retry_SOURCES = retry.c
77
EXTRA_DIST = retry.spec
88
dist_man_MANS = retry.1
99

10-
dist-hook:
11-
./retry --help | txt2man -d 1 -t "${PACKAGE_NAME}" -r "${PACKAGE_NAME}-${PACKAGE_VERSION}" > retry.1
12-
install retry.1 $(distdir)/retry.1
13-
14-
retry.1: | retry
15-
./retry --help | txt2man -d 1 -t "${PACKAGE_NAME}" -r "${PACKAGE_NAME}-${PACKAGE_VERSION}" > retry.1
10+
retry.1: retry
11+
./retry --help | txt2man -s 1 -t "${PACKAGE_NAME}" -r "${PACKAGE_NAME}-${PACKAGE_VERSION}" > retry.1
1612

0 commit comments

Comments
 (0)