From a15cb619662787fd1cd72f132b6566fef91ee6fa Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Wed, 19 May 1999 00:00:08 +0000 Subject: [PATCH] * automake.in (handle_single_transform_list): Added missing space. Fixes specflags.test. --- ChangeLog | 5 +++++ TODO | 2 ++ automake.in | 2 +- 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index a2c81d18..ac566232 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 fadbfcc8..fc0ff446 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 6f9a428e..02a06ff2 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') -- 2.43.5