diff options
author | William Hubbs <w.d.hubbs@gmail.com> | 2014-12-08 09:47:42 -0600 |
---|---|---|
committer | William Hubbs <w.d.hubbs@gmail.com> | 2014-12-08 09:47:42 -0600 |
commit | 6a9679377f4de257f02de1d16a513df14b4c25ba (patch) | |
tree | 0fdecfb7ca3e981bc25ff6472a0d1d2f5ab838e1 | |
parent | 72186ea3bbbf0b09b88a6f3e1fb23bf04ce1ddad (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.
-rw-r--r-- | mk/dist.mk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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}) |