diff options
author | Jim Meyering <jim@meyering.net> | 2005-10-16 11:00:22 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2005-10-16 11:00:22 +0000 |
commit | 0652d12852efee5f6c68288d85e0af9dd44549db (patch) | |
tree | 6905a8d9157372a36b2ee56a2c25978b75669bcf | |
parent | 8fe2b26799aca398c164a1f34338a3cf94074b04 (diff) | |
download | coreutils-0652d12852efee5f6c68288d85e0af9dd44549db.tar.xz |
whoops. Don't put $$today inside single quotes.
-rw-r--r-- | Makefile.maint | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.maint b/Makefile.maint index 859eba6be..5a210aec2 100644 --- a/Makefile.maint +++ b/Makefile.maint @@ -299,7 +299,7 @@ makefile-check: news-date-check: NEWS today=`date +%Y-%m-%d`; \ - if head NEWS | grep '^\*.* $(VERSION_REGEXP) \($$today\)' \ + if head NEWS | grep '^\*.* $(VERSION_REGEXP) ('$$today')' \ >/dev/null; then \ :; \ else \ |