diff options
author | Nicholas Clark <nick@ccl4.org> | 2008-08-09 13:16:03 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2008-08-09 13:16:03 +0000 |
commit | 2f4cffa7723545b6812f9ecf0e78635684033dad (patch) | |
tree | eaac50c8c37bfacd32da0bc64b66a144011408f4 /t/harness | |
parent | cd1d2f8a20b8a9f92576c0e00d1dc723574ea002 (diff) | |
download | perl-2f4cffa7723545b6812f9ecf0e78635684033dad.tar.gz |
Don't need to do the globbing before building the rules, as it makes
the rules larger than necessary, and potentially slows things down.
p4raw-id: //depot/perl@34191
Diffstat (limited to 't/harness')
-rw-r--r-- | t/harness | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -130,7 +130,7 @@ if (@ARGV) { push @next, 'japh' if $torture; push @next, 'win32' if $^O eq 'MSWin32'; push @seq, { par => [ - map { glob "$_/*.t" } @next + map { "$_/*.t" } @next ] }; my @last; |