]> sourceware.org Git - automake.git/commitdiff
Perl 4 fixes Release-0-27
authorTom Tromey <tromey@redhat.com>
Wed, 3 Jan 1996 19:26:24 +0000 (19:26 +0000)
committerTom Tromey <tromey@redhat.com>
Wed, 3 Jan 1996 19:26:24 +0000 (19:26 +0000)
ChangeLog
Makefile.in
NEWS
automake.in

index fdd4ce5b08c4a609f5adf013f760c52005a6ebda..476aa4b9cc051a8779fd10997fd427eba831192a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 Wed Jan  3 00:05:40 1996  Tom Tromey  <tromey@cambric.colorado.edu>
 
+       * automake.in (pretty_print_internal): Fix for Perl 4
+       compatibility.
+
        * configure.in (VERSION): Version 0.27.
 
        * depend.am ($(srcdir)/.deps/%.P): Must regexp-quote srcdir in sed
index 1b858ad0c40167d26620df4cd2131d10190d0abc..bad4276e2c2242b949f36f2b0ec49df1bb88a86b 100644 (file)
@@ -1,4 +1,4 @@
-# Makefile.in generated automatically by automake 0.26 from Makefile.am
+# Makefile.in generated automatically by automake 0.27 from Makefile.am
 
 
 SHELL = /bin/sh
@@ -69,9 +69,9 @@ DVIS = automake.dvi
 DATA= $(pkgdata_DATA)
 
 ACLOCAL = aclocal.m4
-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
+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
 
 
 PACKAGE = @PACKAGE@
diff --git a/NEWS b/NEWS
index c687965abc7ade4f3c1ec71f19bdeff46e87ff6a..f03350406fca914af0f0bd8dda5e2a54b286cecb 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,6 @@
+New in 0.27:
+* Works with Perl 4 again
+\f
 New in 0.26:
 * Added --install-missing option.
 * Pretty-prints generated macros and rules
index 4a13dc42732c4e4a9a84480cfd22688e0407a6dd..3494eb58e75bde059ccce30dafcd87a90f31929f 100755 (executable)
@@ -1070,7 +1070,7 @@ sub pretty_print_internal
     local ($head, $fill, @values) = @_;
 
     local ($column) = length ($head);
-    local ($result) .= $head;
+    local ($result) = $head;
 
     local ($bol) = 0;
     foreach (@values)
This page took 0.036542 seconds and 5 git commands to generate.