]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
* automake.in (handle_installdirs): Reindent to workaround a
authorAlexandre Duret-Lutz <adl@gnu.org>
Thu, 14 Nov 2002 16:33:15 +0000 (16:33 +0000)
committerAlexandre Duret-Lutz <adl@gnu.org>
Thu, 14 Nov 2002 16:33:15 +0000 (16:33 +0000)
parsing bug in Perl 5.6.0.
Reported by Patrick Welche.

ChangeLog
automake.in

index 01b6e64214211a411a10fffc167d38de5825e83e..7f51cc26304698835ecd8a6d53c1842c068af357 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 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.
index ba385a21dd8eaa97ae9aabb62814c8449ebd750c..fd8119d3337fc70d0ecddf76bc522bc569d529d2 100755 (executable)
@@ -4736,14 +4736,12 @@ sub handle_footer
 # 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' : ''));
 }