* depend2.am (%.o): Use \012, not \n, to avoid losing `tr's. From
authorTom Tromey <tromey@redhat.com>
Wed, 6 Jan 1999 12:41:34 +0000 (12:41 +0000)
committerTom Tromey <tromey@redhat.com>
Wed, 6 Jan 1999 12:41:34 +0000 (12:41 +0000)
Bill Currie.
(%.lo): Likewise.

ChangeLog
THANKS
depend2.am
lib/am/depend2.am

index c49d7a2..9a31e78 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+1999-01-05  Tom Tromey  <tromey@cygnus.com>
+
+       * depend2.am (%.o): Use \012, not \n, to avoid losing `tr's.  From
+       Bill Currie.
+       (%.lo): Likewise.
+
 1998-12-22  Alexandre Oliva  <oliva@dcc.unicamp.br>
 
        * depend2.am: Don't assume backslash can't occur in the middle of
diff --git a/THANKS b/THANKS
index 2b15b82..1d0869f 100644 (file)
--- a/THANKS
+++ b/THANKS
@@ -10,6 +10,7 @@ Andrew Cagney         cagney@tpgi.com.au
 Anthony Green          green@cygnus.com
 Assar Westerlund       assar@sics.se
 Bernard Urban          Bernard.Urban@meteo.fr
+Bill Currie            bcurrie@tssc.co.nz
 Bill Fenner            fenner@parc.xerox.com
 Chris Provenzano       proven@io.proven.org
 David A. Swierczek     swiercze@mr.med.ge.com
index a9e2d4a..dec3e82 100644 (file)
@@ -1,5 +1,5 @@
 ## automake - create Makefile.in from Makefile.am
-## Copyright (C) 1994, 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
+## Copyright (C) 1994-1998, 1999 Free Software Foundation, Inc.
 
 ## This program is free software; you can redistribute it and/or modify
 ## it under the terms of the GNU General Public License as published by
@@ -34,7 +34,7 @@
 ## dummy dependencies for each header file.  Too bad gcc doesn't do
 ## this for us directly.
        @-cp .deps/$(*F).pp .deps/$(*F).P; \
-       tr ' ' '\n' < .deps/$(*F).pp \
+       tr ' ' '\012' < .deps/$(*F).pp \
 ## Some versions of gcc put a space before the `:'.  On the theory
 ## that the space means something, we add a space to the output as
 ## well.
@@ -50,7 +50,7 @@
        @-sed -e 's/^\([^:]*\)\.o[      ]*:/\1.lo \1.o :/' \
          < .deps/$(*F).pp > .deps/$(*F).P; \
 ## See above to understand deleted header file trick.
-       tr ' ' '\n' < .deps/$(*F).pp \
+       tr ' ' '\012' < .deps/$(*F).pp \
 ## Some versions of gcc put a space before the `:'.  On the theory
 ## that the space means something, we add a space to the output as
 ## well.
index a9e2d4a..dec3e82 100644 (file)
@@ -1,5 +1,5 @@
 ## automake - create Makefile.in from Makefile.am
-## Copyright (C) 1994, 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
+## Copyright (C) 1994-1998, 1999 Free Software Foundation, Inc.
 
 ## This program is free software; you can redistribute it and/or modify
 ## it under the terms of the GNU General Public License as published by
@@ -34,7 +34,7 @@
 ## dummy dependencies for each header file.  Too bad gcc doesn't do
 ## this for us directly.
        @-cp .deps/$(*F).pp .deps/$(*F).P; \
-       tr ' ' '\n' < .deps/$(*F).pp \
+       tr ' ' '\012' < .deps/$(*F).pp \
 ## Some versions of gcc put a space before the `:'.  On the theory
 ## that the space means something, we add a space to the output as
 ## well.
@@ -50,7 +50,7 @@
        @-sed -e 's/^\([^:]*\)\.o[      ]*:/\1.lo \1.o :/' \
          < .deps/$(*F).pp > .deps/$(*F).P; \
 ## See above to understand deleted header file trick.
-       tr ' ' '\n' < .deps/$(*F).pp \
+       tr ' ' '\012' < .deps/$(*F).pp \
 ## Some versions of gcc put a space before the `:'.  On the theory
 ## that the space means something, we add a space to the output as
 ## well.