summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2010-02-21 14:46:27 +0000
committerNicholas Clark <nick@ccl4.org>2010-02-21 14:46:27 +0000
commit79cf6d147ddb45df8d4a108b442c4a9707a4061d (patch)
treefcddfab172fb131963ef9cfee6bc3cb4eabb1c36
parentb3289bd223cc434b2247c06d40ffe8d467f241de (diff)
downloadperl-79cf6d147ddb45df8d4a108b442c4a9707a4061d.tar.gz
Since change 9c901649534a1360, vendorlib_stem isn't always added to @INC.
Update lib/Config.t to reflect this. vendorlib_stem used always to be added if defined. Since that change it is only added if inc_version_list is also defined, which makes "vendor" behaviour consistent with "site", where sitelib_stem had always only ever been added to @INC if inc_version_list is defined.
-rw-r--r--lib/Config.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Config.t b/lib/Config.t
index 922f8264fd..76ce6b6393 100644
--- a/lib/Config.t
+++ b/lib/Config.t
@@ -256,9 +256,9 @@ my %orig_inc;
@orig_inc{@orig_inc} = ();
my $failed;
-# This is the order that directories are pushed onto @INC in perl.c:
+# This [used to be] the order that directories are pushed onto @INC in perl.c:
foreach my $lib (qw(applibexp archlibexp privlibexp sitearchexp sitelibexp
- vendorarchexp vendorlibexp vendorlib_stem)) {
+ vendorarchexp vendorlibexp)) {
my $dir = $Config{$lib};
SKIP: {
skip "lib $lib not in \@INC on Win32" if $^O eq 'MSWin32';