2002-11-14 Alexandre Duret-Lutz <adl@gnu.org>
+ * automake.in (handle_installdirs): Reindent to workaround a
+ parsing bug in Perl 5.6.0.
+ Reported by Patrick Welche.
+
* lib/Automake/Conditional.pm: Add reference to ConditionalSet.pm.
* lib/Automake/ConditionalSet.pm: New file.
* lib/Automake/Makefile.am (dist_perllib_DATA): Add ConditionalSet.pm.
# Deal with installdirs target.
sub handle_installdirs ()
{
- $output_rules .=
- &file_contents ('install',
- new Automake::Location,
- am__installdirs
- => variable_value ('am__installdirs') || '',
- 'installdirs-local'
- => (target_defined ('installdirs-local')
- ? ' installdirs-local' : ''));
+ $output_rules .= &file_contents
+ ('install',
+ new Automake::Location,
+ am__installdirs => variable_value ('am__installdirs') || '',
+ 'installdirs-local' => (target_defined ('installdirs-local')
+ ? ' installdirs-local' : ''));
}