]> sourceware.org Git - automake.git/commitdiff
perl 4 patch
authorTom Tromey <tromey@redhat.com>
Wed, 30 Apr 1997 00:38:08 +0000 (00:38 +0000)
committerTom Tromey <tromey@redhat.com>
Wed, 30 Apr 1997 00:38:08 +0000 (00:38 +0000)
automake.in

index adf30c88b5fc8ed107721e7a52e58bfe40eb1d80..0ce515a632a5505ce6a99a2a2aa8a1b5cad3c570 100755 (executable)
@@ -4493,7 +4493,7 @@ sub variable_conditions_sub
     foreach $this_cond (@this_conds)
     {
        local (@perms) =
-           &variable_conditions_permutations (split '@', $this_cond);
+           &variable_conditions_permutations (split('@', $this_cond));
        local ($perm);
        foreach $perm (@perms)
        {
@@ -4543,7 +4543,7 @@ sub variable_conditions_cmp
     local ($bs) = $b;
     $bs =~ s/[^@]//g;
     return (length ($as) <=> length ($bs)
-           or $a cmp $b);
+           || $a cmp $b);
 }
 
 # Sort a list of conditionals so that only the exclusive ones are
This page took 0.040173 seconds and 5 git commands to generate.