]> sourceware.org Git - automake.git/commitdiff
(distdir): fgrep -> grep -F.
authorPaul Eggert <eggert@cs.ucla.edu>
Thu, 30 May 2002 05:54:05 +0000 (05:54 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Thu, 30 May 2002 05:54:05 +0000 (05:54 +0000)
Use $(), not ${}, for Make variables.

lib/am/distdir.am

index ac96b3fa4a14f8744cddf4a775c7bfc8194ec21e..a34710e7aaa94efb46ccc4e42b9fcb5477b13d00 100644 (file)
@@ -1,5 +1,5 @@
 ## automake - create Makefile.in from Makefile.am
-## Copyright 2001 Free Software Foundation, Inc.
+## Copyright (C) 2001, 2002 Free Software Foundation, Inc.
 
 ## This program is free software; you can redistribute it and/or modify
 ## it under the terms of the GNU General Public License as published by
@@ -42,7 +42,7 @@ distdir: $(DISTFILES)
 ##
 if %?TOPDIR_P%
 if  %?CK-NEWS%
-       @if sed 15q $(srcdir)/NEWS | fgrep -e "$(VERSION)" >/dev/null; \
+       @if sed 15q $(srcdir)/NEWS | grep -F -e "$(VERSION)" >/dev/null; \
        then :; else \
          echo "NEWS not updated; not releasing" 1>&2; \
          exit 1; \
@@ -142,7 +142,7 @@ endif %?SUBDIRS%
 ##
 if %?DIST-TARGETS%
        $(MAKE) $(AM_MAKEFLAGS) \
-         top_distdir="${top_distdir}" distdir="$(distdir)" \
+         top_distdir="$(top_distdir)" distdir="$(distdir)" \
          %DIST-TARGETS%
 endif %?DIST-TARGETS%
 ##
This page took 0.025192 seconds and 5 git commands to generate.