summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Worth <cworth@cworth.org>2010-04-16 08:31:46 -0700
committerCarl Worth <cworth@cworth.org>2010-04-16 08:31:46 -0700
commitff13111cf36298cde09e4ff85ec83fdd42b52f0a (patch)
tree9111c39e7227cf1b158c808fb596b05623f77cd2
parent48cd091249ab7b8411c0488dee9ca1bd5efa8597 (diff)
Makefile: Fix "make release" to print the current release announcement.
This was accidentally hard-coded to always print the 0.1 NEWS blurb.
-rw-r--r--Makefile.local2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.local b/Makefile.local
index e112072..1c3719e 100644
--- a/Makefile.local
+++ b/Makefile.local
@@ -105,7 +105,7 @@ release-message:
@echo ""
@echo "What's new in notmuch $(VERSION)"
@echo "========================="
- @sed -ne '/^[Nn]otmuch 0.1/{n;n;b NEWS}; d; :NEWS /^===/q; {p;n;b NEWS}' < NEWS | head -n -2
+ @sed -ne '/^[Nn]otmuch $(VERSION)/{n;n;b NEWS}; d; :NEWS /^===/q; {p;n;b NEWS}' < NEWS | head -n -2
@echo ""
@echo "What is notmuch"
@echo "==============="