]> sourceware.org Git - automake.git/commitdiff
1999-12-13 Pavel Roskin <pavel_roskin@geocities.com>
authorTom Tromey <tromey@redhat.com>
Mon, 13 Dec 1999 07:13:42 +0000 (07:13 +0000)
committerTom Tromey <tromey@redhat.com>
Mon, 13 Dec 1999 07:13:42 +0000 (07:13 +0000)
* automake.in (add_depend2): substitute $rule in the rules
for individual files.  Fixes test specflags5.test.

ChangeLog
automake.in

index d62aa3da116830bac889ce88ff22fefb00dfa921..5bc0d095445f0b80f1497a2356de1c23308b4de7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+1999-12-13  Pavel Roskin  <pavel_roskin@geocities.com>
+
+       * automake.in (add_depend2): substitute $rule in the rules
+       for individual files.  Fixes test specflags5.test.
+
 1999-12-12  Tom Tromey  <tromey@cygnus.com>
 
        * m4/depout.m4 (AM_OUTPUT_DEPENDENCY_COMMANDS): Run mkinstalldirs
index 934cb49d592345c5ef2b7bdae7878bc93e97f08a..f59f98bc20637e011de4c3abb16d4cd1e5b4d028 100755 (executable)
@@ -2903,6 +2903,11 @@ sub add_depend2
        # are building.
        $output_rules .=
            &file_contents_with_transform ($xform
+                                          . 's/\$\(' . $pfx . 'COMPILE\)/'
+                                          . $rule . '/g;'
+                                          . 's/\$\(LT' . $pfx . 'COMPILE\)/'
+                                          . '\$(LIBTOOL) --mode=compile '
+                                          . $rule . '/g;'
                                           # Generate rule for `.o'.
                                           . 's/^\@EXT\@\.o:/'
                                           . $obj . '.o: ' . $source
This page took 0.04086 seconds and 5 git commands to generate.