]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
Use $(VERSION) etc. Not @VERSION@.
authorJim Meyering <jim@meyering.net>
Sun, 25 Jan 1998 21:07:30 +0000 (21:07 +0000)
committerJim Meyering <jim@meyering.net>
Sun, 25 Jan 1998 21:07:30 +0000 (21:07 +0000)
Makefile.maint

index 25457f23e1c3b4fd469a945be7b6ba12dcff23d9..6e2def67966eb03f303d0cd826542be6214fd33d 100644 (file)
@@ -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 \