summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Knoth <adi@drcomp.erfurt.thur.de>2017-01-10 00:47:41 +0100
committerGitHub <noreply@github.com>2017-01-10 00:47:41 +0100
commitd1482a64971882cd221da3301733823b08e1ddd3 (patch)
tree74f0ac23b1ab96f026eea65eae9d32e6e586f39d
parent8799147e66e25d3e6823ce9d6048c3ae9ee18ce9 (diff)
parent1f544ff7ab906f2e77aaf2c6a32178c131774f97 (diff)
downloadjack1-d1482a64971882cd221da3301733823b08e1ddd3.tar.gz
Merge pull request #57 from jcowgill/man-page-date
Use LC_ALL=C to generate manpage date
-rw-r--r--man/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/man/Makefile.am b/man/Makefile.am
index f889434..3cb404a 100644
--- a/man/Makefile.am
+++ b/man/Makefile.am
@@ -1,5 +1,5 @@
.0.1:
- @[ -z "$$SOURCE_DATE_EPOCH" ] || d=--date=@$$SOURCE_DATE_EPOCH ; sed -e "s/!VERSION!/@JACK_RELEASE@/g" -e "s/!DATE!/`date $$d '+%B %Y'`/g" < $*.0 > $@
+ @[ -z "$$SOURCE_DATE_EPOCH" ] || d=--date=@$$SOURCE_DATE_EPOCH ; sed -e "s/!VERSION!/@JACK_RELEASE@/g" -e "s/!DATE!/`LC_ALL=C date $$d '+%B %Y'`/g" < $*.0 > $@
@echo Built $*.1 from template
manpages = $(patsubst %.0,%.1,$(wildcard *.0))