From: Tom Tromey Date: Wed, 3 Jan 1996 19:26:28 +0000 (+0000) Subject: Perl 4 fixes X-Git-Tag: Release-0-27^0 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=64e466de100b61835e7b54f6bee9bde52ad17cc8;p=thirdparty%2Fautomake.git Perl 4 fixes --- diff --git a/ChangeLog b/ChangeLog index fdd4ce5b0..476aa4b9c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ Wed Jan 3 00:05:40 1996 Tom Tromey + * 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 diff --git a/Makefile.in b/Makefile.in index 1b858ad0c..bad4276e2 100644 --- a/Makefile.in +++ b/Makefile.in @@ -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 c687965ab..f03350406 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,6 @@ +New in 0.27: +* Works with Perl 4 again + New in 0.26: * Added --install-missing option. * Pretty-prints generated macros and rules diff --git a/automake.in b/automake.in index 4a13dc427..3494eb58e 100755 --- a/automake.in +++ b/automake.in @@ -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)