aboutsummaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authorWilliam Hubbs <w.d.hubbs@gmail.com>2014-12-08 09:47:42 -0600
committerWilliam Hubbs <w.d.hubbs@gmail.com>2014-12-08 09:47:42 -0600
commit6a9679377f4de257f02de1d16a513df14b4c25ba (patch)
tree0fdecfb7ca3e981bc25ff6472a0d1d2f5ab838e1 /mk
parent72186ea3bbbf0b09b88a6f3e1fb23bf04ce1ddad (diff)
Do not call the shell to evaluate CHANGELOG_LIMIT
The git log command understands dates such as "1 year ago", so there is no need to use the date command.
Diffstat (limited to 'mk')
-rw-r--r--mk/dist.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/mk/dist.mk b/mk/dist.mk
index 6c37dc8f..4f7babbd 100644
--- a/mk/dist.mk
+++ b/mk/dist.mk
@@ -8,7 +8,7 @@ DISTFILE?= ${DISTPREFIX}.tar.bz2
CLEANFILES+= ${NAME}-*.tar.bz2
-CHANGELOG_LIMIT?= --after=$(shell date --utc --date="1 year ago" +%Y-%m-%d)
+CHANGELOG_LIMIT?= --after="1 year ago"
_SNAP_SH= date -u +%Y%m%d%H%M
_SNAP:= $(shell ${_SNAP_SH})