summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2010-10-10 09:08:05 -0600
committerFather Chrysostomos <sprout@cpan.org>2010-10-12 13:51:10 -0700
commitdff6c0469fc280def8f226ca670a752b0faff872 (patch)
treec669f237c16890900f48aa198f051c4d38c57b16 /lib
parentd1d1cd7a762a87ab5e8d99734e7e804b84a88739 (diff)
downloadperl-dff6c0469fc280def8f226ca670a752b0faff872.tar.gz
mktables: rewrite 'if' statement for clarity
Diffstat (limited to 'lib')
-rw-r--r--lib/unicore/mktables4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/unicore/mktables b/lib/unicore/mktables
index 41c96c556c..a995a54407 100644
--- a/lib/unicore/mktables
+++ b/lib/unicore/mktables
@@ -13978,8 +13978,8 @@ foreach my $in (@input_files) {
}
}
-my $rebuild = ! (! $write_unchanged_files
- && scalar @mktables_list_output_files); # If none known, rebuild
+my $rebuild = $write_unchanged_files # Rebuild: if unconditional rebuild
+ || ! scalar @mktables_list_output_files; # or if no outputs known
# Now we check to see if any output files are older than youngest, if
# they are, we need to continue on, otherwise we can presumably bail.