summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJoey Hess2016-03-09 00:03:51 -0400
committerJoey Hess2016-03-09 00:03:51 -0400
commitcc7b21ec7749a6458c303caa5a9bec27f93565d4 (patch)
tree2cb18138eb411cfa1121f0cc36fc60e45c9d066e /Makefile
parent8760c6162aae4c67a90986eda732412974cfaf76 (diff)
avoid error message when dpkg-parsechangelog is not installed
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index d1809458..a9ad2b84 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
CABAL?=cabal
-DATE := $(shell dpkg-parsechangelog | grep Date | cut -d " " -f2-)
+DATE := $(shell dpkg-parsechangelog 2>/dev/null | grep Date | cut -d " " -f2-)
# this target is provided (and is first) to keep old versions of the
# propellor cron job working, and will eventually be removed