Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion config.mk
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,11 @@ else
MAN_INOTIFY = disabled
endif

MAN_DATE ?= ${shell date '+%B %d, %Y'}
# The environment variable SOURCE_DATE_EPOCH is used by build environments
# to produce reproducible binary builds. In fact you can set both manually,
# SOURCE_DATE_EPOCH and MAN_DATE.
SOURCE_DATE_EPOCH ?= $(shell date +%s)
MAN_DATE ?= ${shell date --utc --date=@$(SOURCE_DATE_EPOCH) '+%B %d, %Y'}

# Uncomment this to use dmalloc
#CFLAGS += -DWITH_DMALLOC
Expand Down
Loading