Skip to content

Commit

Permalink
Merge pull request #438 from jelly/reproducible
Browse files Browse the repository at this point in the history
make date reproducible when SOURCE_DATE_EPOCH is set
  • Loading branch information
AlDanial committed Dec 11, 2019
2 parents f70c94c + 025a17d commit 513dac6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Unix/pod2man.mk
Expand Up @@ -40,7 +40,7 @@ PACKAGE ?= package
# Optional variables to set
MANSECT ?= 1
PODCENTER ?= User Commands
PODDATE ?= $$(date "+%Y-%m-%d")
PODDATE ?= $$(date --utc --date="@$${SOURCE_DATE_EPOCH:-$$(date +%s)}" "+%Y-%m-%d")

# Directories
MANSRC ?=
Expand Down

0 comments on commit 513dac6

Please sign in to comment.