]> sourceware.org Git - automake.git/commitdiff
* automake.in (handle_single_transform_list): Added missing
authorTom Tromey <tromey@redhat.com>
Wed, 19 May 1999 00:00:08 +0000 (00:00 +0000)
committerTom Tromey <tromey@redhat.com>
Wed, 19 May 1999 00:00:08 +0000 (00:00 +0000)
space.  Fixes specflags.test.

ChangeLog
TODO
automake.in

index a2c81d1885d46db87307a2e3fbde0270f4fedb35..ac56623285b250e3ba6d7dd90ec070c7162045f7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+1999-05-19  Tom Tromey  <tromey@cygnus.com>
+
+       * automake.in (handle_single_transform_list): Added missing
+       space.  Fixes specflags.test.
+
 1999-05-05  Tom Tromey  <tromey@cygnus.com>
 
        * automake.in: Disabled dependency tracking for Java.
diff --git a/TODO b/TODO
index fadbfcc8a245ec8fdfecdab6de8e8407bdc62672..fc0ff446e2cf55a761785196973a9d100bdd040a 100644 (file)
--- a/TODO
+++ b/TODO
@@ -7,6 +7,8 @@
        foo.o: sub/foo.c
   why did I think it did work?
 
+* Sometimes we can warn about a missing `compile' script twice.
+
 * A target named `INSTALL' will screw things up.
   It shouldn't.
 
index 6f9a428eada9952837785033beb50dc75891365b..02a06ff28b80cd032ed6b25ba4ae30568b4d3cac 100755 (executable)
@@ -1262,7 +1262,7 @@ sub handle_single_transform_list
                    ($rule = $language_map{$lang . '-compile'}) =~    
                        s/\($flag/$val/;
 
-                   $rule .= $language_map{$lang . '-output-arg'};
+                   $rule .= ' ' . $language_map{$lang . '-output-arg'};
                    # For C we have to add the -o, because the
                    # standard rule doesn't include it.
                    if ($language_map{$lang . '-flags'} eq 'CFLAGS')
This page took 0.039655 seconds and 5 git commands to generate.