Skip to content

Commit

Permalink
install: set manpage date to modules build date
Browse files Browse the repository at this point in the history
  • Loading branch information
xdelaruelle committed Sep 30, 2017
1 parent fca1cc2 commit af3e640
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,11 @@ $(HTML_DIR)/%.html: $(SOURCE_DIR)/%.pod

$(MAN1_DIR)/%.1: $(SOURCE_DIR)/%.pod ../version.inc
mkdir -p $(MAN1_DIR)
pod2man -c $(MAN_HEADER) -r $(MAN_VERSION) -s 1 $< $@
pod2man -c $(MAN_HEADER) -r $(MAN_VERSION) -d $(MODULES_BUILD_DATE) -s 1 $< $@

$(MAN4_DIR)/%.4: $(SOURCE_DIR)/%.pod ../version.inc
mkdir -p $(MAN4_DIR)
pod2man -c $(MAN_HEADER) -r $(MAN_VERSION) -s 4 $< $@
pod2man -c $(MAN_HEADER) -r $(MAN_VERSION) -d $(MODULES_BUILD_DATE) -s 4 $< $@

%.txt: $(SOURCE_DIR)/%.pod
pod2text $< >$@
Expand Down

0 comments on commit af3e640

Please sign in to comment.