From: Tom Tromey Date: Wed, 3 Jan 1996 19:34:33 +0000 (+0000) Subject: Minor fixes X-Git-Tag: Release-0-28~24 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=2b435f754da81453619c065a025076b0c9f35a57;p=automake.git Minor fixes --- diff --git a/ChangeLog b/ChangeLog index 476aa4b9..09fc7166 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ Wed Jan 3 00:05:40 1996 Tom Tromey + * Makefile.am (cvs-dist): Suppress output of "grep". + + * configure.in (VERSION): Version 0.28. + * automake.in (pretty_print_internal): Fix for Perl 4 compatibility. diff --git a/Makefile.am b/Makefile.am index f818a14d..80cd98d3 100644 --- a/Makefile.am +++ b/Makefile.am @@ -49,7 +49,7 @@ automake: automake.in # 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 - @if sed 1q NEWS | grep -e "$(VERSION)"; then :; else \ + @if sed 1q NEWS | grep -e "$(VERSION)" > /dev/null; then :; else \ echo "NEWS not updated; not releasing" 1>&2; \ exit 1; \ fi diff --git a/Makefile.in b/Makefile.in index bad4276e..2d6cabe5 100644 --- a/Makefile.in +++ b/Makefile.in @@ -69,9 +69,9 @@ DVIS = automake.dvi DATA= $(pkgdata_DATA) ACLOCAL = aclocal.m4 -DIST_COMMON = THANKS install-sh mdate-sh configure README configure.in \ -ChangeLog INSTALL texinfo.tex mkinstalldirs Makefile.in stamp-vti \ -aclocal.m4 NEWS TODO Makefile.am version.texi +DIST_COMMON = mkinstalldirs configure Makefile.in stamp-vti configure.in \ +ChangeLog THANKS README version.texi mdate-sh TODO INSTALL Makefile.am \ +texinfo.tex NEWS aclocal.m4 install-sh PACKAGE = @PACKAGE@ @@ -314,7 +314,7 @@ automake: automake.in # 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 - @if sed 1q NEWS | grep -e "$(VERSION)"; then :; else \ + @if sed 1q NEWS | grep -e "$(VERSION)" > /dev/null; then :; else \ echo "NEWS not updated; not releasing" 1>&2; \ exit 1; \ fi diff --git a/configure b/configure index 6cc3a3df..89d394bc 100755 --- a/configure +++ b/configure @@ -522,7 +522,7 @@ cat >> confdefs.h <> confdefs.h < /dev/null; then :; else \ echo "NEWS not updated; not releasing" 1>&2; \ exit 1; \ fi diff --git a/version.texi b/version.texi index 3f071e1c..19314f6b 100644 --- a/version.texi +++ b/version.texi @@ -1,3 +1,3 @@ @set UPDATED 3 January -@set EDITION 0.27 -@set VERSION 0.27 +@set EDITION 0.28 +@set VERSION 0.28