2002-12-04 Alexandre Duret-Lutz <adl@gnu.org>
+ * automake.in (variable_pretty_output): Strip trailing
+ backslashes in $val after $val is defined...
+ Reported by Kevin Ryde.
+
* tests/depcomp2.test: Pass CC='gcc' as an argument to ./configure
not in the environment. Otherwise the test will fail when
run with ksh and VERBOSE=x.
$output_vars .= $var_comment{$var}{$cond};
}
+ my $val = $var_value{$var}{$cond};
+ my $equals = $var_type{$var}{$cond} eq ':' ? ':=' : '=';
+ my $make_condition = $cond->subst_string;
# Suppress escaped new lines. &pretty_print_internal will
# add them back, maybe at other places.
$val =~ s/\\$//mg;
- my $val = $var_value{$var}{$cond};
- my $equals = $var_type{$var}{$cond} eq ':' ? ':=' : '=';
- my $make_condition = $cond->subst_string;
$output_vars .= pretty_print_internal ("$make_condition$var $equals",
"$make_condition\t",
split (' ' , $val));