From 169f2dd8aa7d80c8d98637d54832a7766804ab75 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Thu, 17 May 2001 18:29:07 +0000 Subject: [PATCH] * lib/depcomp (aix): Bug fix and simplification from Larry Jones. --- ChangeLog | 2 ++ lib/depcomp | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 3b95f93c..4e2bde65 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2001-05-17 Tom Tromey + * lib/depcomp (aix): Bug fix and simplification from Larry Jones. + * lib/depcomp (tru64): New dependency tracking mode. Fix for PR automake/159: diff --git a/lib/depcomp b/lib/depcomp index f353c5a3..02458b89 100755 --- a/lib/depcomp +++ b/lib/depcomp @@ -180,7 +180,7 @@ aix) # Each line is of the form `foo.o: dependent.h'. # Do two passes, one to just change these to # `$object: dependent.h' and one to simply `dependent.h:'. - sed -e "s,^$outname: \(.*\)$,$object \1," < "$tmpdepfile" > "$depfile" + sed -e "s,^$outname:,$object :," < "$tmpdepfile" > "$depfile" sed -e "s,^$outname: \(.*\)$,\1:," < "$tmpdepfile" >> "$depfile" else # The sourcefile does not contain any dependencies, so just -- 2.43.5