1999-04-10 Alexandre Oliva <oliva@dcc.unicamp.br>
+ * automake.in (handle_dependencies): Fix test for `autodep'
+ support.
+
* automake.in (handle_source_transform): Add a pfx to used_pfx
only if it's conditional or non-empty, to reduce the number of
empty variables. Emit _OBJECS variable based on program name if
foreach $key (sort keys %language_map)
{
next unless $key =~ /^(.*)-autodep$/;
- next if $language_map{$key} == 'no';
+ next if $language_map{$key} eq 'no';
$lang = $1;
$xform = 's/\@PFX\@/' . $language_map{$key} . '/g;';