From 26b48b5919778674eb93a2fc0af0832d2acbbf57 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Thu, 30 May 2002 05:54:05 +0000 Subject: [PATCH] (distdir): fgrep -> grep -F. Use $(), not ${}, for Make variables. --- lib/am/distdir.am | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/am/distdir.am b/lib/am/distdir.am index ac96b3fa..a34710e7 100644 --- a/lib/am/distdir.am +++ b/lib/am/distdir.am @@ -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% ## -- 2.43.5