From 474d9425f8f263a8a61d71ad8d22e624021d887f Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Wed, 6 Jan 1999 12:41:32 +0000 Subject: [PATCH] * depend2.am (%.o): Use \012, not \n, to avoid losing `tr's. From Bill Currie. (%.lo): Likewise. --- ChangeLog | 6 ++++++ THANKS | 1 + depend2.am | 6 +++--- lib/am/depend2.am | 6 +++--- 4 files changed, 13 insertions(+), 6 deletions(-) diff --git a/ChangeLog b/ChangeLog index c49d7a21..9a31e781 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +1999-01-05 Tom Tromey + + * depend2.am (%.o): Use \012, not \n, to avoid losing `tr's. From + Bill Currie. + (%.lo): Likewise. + 1998-12-22 Alexandre Oliva * depend2.am: Don't assume backslash can't occur in the middle of diff --git a/THANKS b/THANKS index 2b15b824..1d0869ff 100644 --- 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 diff --git a/depend2.am b/depend2.am index a9e2d4a7..dec3e822 100644 --- a/depend2.am +++ b/depend2.am @@ -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. diff --git a/lib/am/depend2.am b/lib/am/depend2.am index a9e2d4a7..dec3e822 100644 --- a/lib/am/depend2.am +++ b/lib/am/depend2.am @@ -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. -- 2.43.5