From: Alexandre Oliva Date: Wed, 16 Dec 1998 07:07:47 +0000 (+0000) Subject: cvs-dist: missing quotes in sed command X-Git-Tag: release-1-2d X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bf8a4660a3a417893ca1879dee42f5b9dfef531e;p=thirdparty%2Flibtool.git cvs-dist: missing quotes in sed command --- diff --git a/Makefile.am b/Makefile.am index 32cb1d373..81982a384 100644 --- a/Makefile.am +++ b/Makefile.am @@ -82,7 +82,7 @@ $(ACINCLUDE_M4_LIST): $(srcdir)/libtool.m4 # 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: distcheck - @if sed 1,2d;3q $(srcdir)/NEWS | grep -e "$(VERSION)" > /dev/null; then :; else \ + @if sed '1,2d;3q' $(srcdir)/NEWS | grep -e "$(VERSION)" > /dev/null; then :; else \ echo "NEWS not updated; not releasing" 1>&2; \ exit 1; \ fi