diff options
author | Jim Meyering <jim@meyering.net> | 1998-01-25 21:07:30 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1998-01-25 21:07:30 +0000 |
commit | 1349c30df27b205a2618c947add34a9f0827abb6 (patch) | |
tree | ade06aeba4a8591b030bf51ef1e6c7afe492a90c | |
parent | 8659ec88d4a4171d97112b49945622128be76175 (diff) | |
download | coreutils-1349c30df27b205a2618c947add34a9f0827abb6.tar.xz |
Use $(VERSION) etc. Not @VERSION@.
-rw-r--r-- | Makefile.maint | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.maint b/Makefile.maint index 25457f23e..6e2def679 100644 --- a/Makefile.maint +++ b/Makefile.maint @@ -2,10 +2,10 @@ # This Makefile fragment is shared between fileutils, sh-utils, textutils. maintainer-check: - if head ChangeLog| grep 'Version @VERSION@' > /dev/null; then \ + if head ChangeLog| grep 'Version $(VERSION)' > /dev/null; then \ :; \ else \ - echo "@VERSION@ not in ChangeLog; not tagging" 1>&2; \ + echo "$(VERSION) not in ChangeLog; not tagging" 1>&2; \ exit 1; \ fi $(MAKE) distcheck @@ -14,8 +14,8 @@ maintainer-check: # Tag before making distribution. Also, don't make a distribution if # checks fail. Also, make sure the NEWS file is up-to-date. cvs-dist: maintainer-check - pkg=`echo "@PACKAGE@" | tr a-z A-Z`; \ - ver=`echo "@VERSION@" | sed 's/\./_/g'`; \ + pkg=`echo "$(PACKAGE)" | tr a-z A-Z`; \ + ver=`echo "$(VERSION)" | sed 's/\./_/g'`; \ tag="$$pkg-$$ver"; \ echo tag=$$tag; \ if cvs -n log -h README| grep -e $$tag > /dev/null; then \ |