]> sourceware.org Git - automake.git/commitdiff
Minor fixes
authorTom Tromey <tromey@redhat.com>
Wed, 3 Jan 1996 19:34:33 +0000 (19:34 +0000)
committerTom Tromey <tromey@redhat.com>
Wed, 3 Jan 1996 19:34:33 +0000 (19:34 +0000)
ChangeLog
Makefile.am
Makefile.in
configure
configure.in
lib/am/Makefile.am
version.texi

index 476aa4b9cc051a8779fd10997fd427eba831192a..09fc7166ccd846b3347126d67732175a0186eaa2 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 Wed Jan  3 00:05:40 1996  Tom Tromey  <tromey@cambric.colorado.edu>
 
+       * Makefile.am (cvs-dist): Suppress output of "grep".
+
+       * configure.in (VERSION): Version 0.28.
+
        * automake.in (pretty_print_internal): Fix for Perl 4
        compatibility.
 
index f818a14d2a8887c94bfe901f891a71da49b90c29..80cd98d3e9aa532c672dc53b59961000e0e92bfa 100644 (file)
@@ -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
index bad4276e2c2242b949f36f2b0ec49df1bb88a86b..2d6cabe515239da3a753785126cd253a48cd30b5 100644 (file)
@@ -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
index 6cc3a3df39e3a4bb03a7b8c00938c55577d136b0..89d394bcc5a30b33042affaeebade269180b25df 100755 (executable)
--- a/configure
+++ b/configure
@@ -522,7 +522,7 @@ cat >> confdefs.h <<EOF
 #define PACKAGE "$PACKAGE"
 EOF
 
-VERSION=0.27
+VERSION=0.28
 
 cat >> confdefs.h <<EOF
 #define VERSION "$VERSION"
index bd935033a3e154104bd6fa0d310ed25b40caa068..7721500397d782c9df75e38abfd4e466e62bd56c 100644 (file)
@@ -6,7 +6,7 @@ dnl AC_CONFIG_HEADER(config.h)
 PACKAGE=automake
 AC_SUBST(PACKAGE)
 AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE")
-VERSION=0.27
+VERSION=0.28
 AC_SUBST(VERSION)
 AC_DEFINE_UNQUOTED(VERSION, "$VERSION")
 ALL_LINGUAS=
index f818a14d2a8887c94bfe901f891a71da49b90c29..80cd98d3e9aa532c672dc53b59961000e0e92bfa 100644 (file)
@@ -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
index 3f071e1cefe792a3d925740c4c53a2350ab7d655..19314f6b12675751da7b122db790d3bc0b769249 100644 (file)
@@ -1,3 +1,3 @@
 @set UPDATED 3 January
-@set EDITION 0.27
-@set VERSION 0.27
+@set EDITION 0.28
+@set VERSION 0.28
This page took 0.038789 seconds and 5 git commands to generate.