From: Tom Tromey Date: Wed, 19 May 1999 00:00:12 +0000 (+0000) Subject: * automake.in (handle_single_transform_list): Added missing X-Git-Tag: merging-into-user-dep-gen~13 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=35b6482274fd0880ef6ddb2555cf462ebbe18443;p=thirdparty%2Fautomake.git * automake.in (handle_single_transform_list): Added missing space. Fixes specflags.test. --- diff --git a/ChangeLog b/ChangeLog index a2c81d188..ac5662328 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +1999-05-19 Tom Tromey + + * automake.in (handle_single_transform_list): Added missing + space. Fixes specflags.test. + 1999-05-05 Tom Tromey * automake.in: Disabled dependency tracking for Java. diff --git a/TODO b/TODO index fadbfcc8a..fc0ff446e 100644 --- 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. diff --git a/automake.in b/automake.in index 6f9a428ea..02a06ff28 100755 --- a/automake.in +++ b/automake.in @@ -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')