]> sourceware.org Git - automake.git/commitdiff
* lib/depcomp (aix): Bug fix and simplification from Larry Jones.
authorTom Tromey <tromey@redhat.com>
Thu, 17 May 2001 18:29:07 +0000 (18:29 +0000)
committerTom Tromey <tromey@redhat.com>
Thu, 17 May 2001 18:29:07 +0000 (18:29 +0000)
ChangeLog
lib/depcomp

index 3b95f93c327b1b6f5315f9bca3941ac3d25d5ef1..4e2bde653a53f2f2f4bbf500f5d17cf6e5c174d1 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2001-05-17  Tom Tromey  <tromey@redhat.com>
 
+       * lib/depcomp (aix): Bug fix and simplification from Larry Jones.
+
        * lib/depcomp (tru64): New dependency tracking mode.
 
        Fix for PR automake/159:
index f353c5a3cf6ad52f307f03d43185a3fa3e381c1c..02458b8923a3c782231a882a322e2141e6c2c177 100755 (executable)
@@ -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
This page took 0.032843 seconds and 5 git commands to generate.