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

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

index c49d7a218b14679a77ac4dff47b05cab0782587d..9a31e7812b70ce405194abaa6ee9eff69c33a129 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 2b15b8240460ea05ee2891f3a4c2944dd27788d6..1d0869ff217b01e43bc2e01b22c0182956dced2f 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 a9e2d4a754e8cebdd48fa1aad106d894aa759750..dec3e8221f4828e5a5a90e79bef003eed538d81c 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 a9e2d4a754e8cebdd48fa1aad106d894aa759750..dec3e8221f4828e5a5a90e79bef003eed538d81c 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.
This page took 0.040938 seconds and 5 git commands to generate.