summaryrefslogtreecommitdiff
path: root/perl.c
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2009-02-22 20:27:08 +0100
committerNicholas Clark <nick@ccl4.org>2009-02-22 20:27:08 +0100
commita8f9c4338a1e1adea9ac4c69500b6ef9cc351852 (patch)
tree556559c6236a8321a3e635de55834463dcb6d440 /perl.c
parentc992324bfeb3982a4f41866d57b878de770d8c51 (diff)
downloadperl-a8f9c4338a1e1adea9ac4c69500b6ef9cc351852.tar.gz
In S_init_perllib(), push the bare SITELIB_STEM onto @INC after its subdirs.
Diffstat (limited to 'perl.c')
-rw-r--r--perl.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/perl.c b/perl.c
index 02d06b9e6d..48504ddf5f 100644
--- a/perl.c
+++ b/perl.c
@@ -4187,11 +4187,6 @@ S_init_perllib(pTHX)
# endif
#endif
-#if defined(SITELIB_STEM) && defined(PERL_INC_VERSION_LIST)
- /* Search for version-specific dirs below here */
- S_incpush_use_sep(aTHX_ STR_WITH_LEN(SITELIB_STEM), INCPUSH_CAN_RELOCATE);
-#endif
-
#ifdef PERL_VENDORARCH_EXP
/* vendorarch is always relative to vendorlib on Windows for
* DLL-based path intuition to work correctly */
@@ -4280,7 +4275,7 @@ S_init_perllib(pTHX)
#ifndef MACOS_TRADITIONAL
#if defined(SITELIB_STEM) && defined(PERL_INC_VERSION_LIST)
/* Search for version-specific dirs below here */
- S_incpush_use_sep(aTHX_ STR_WITH_LEN(SITELIB_STEM), INCPUSH_ADD_OLD_VERS|INCPUSH_NOT_BASEDIR|INCPUSH_CAN_RELOCATE);
+ S_incpush_use_sep(aTHX_ STR_WITH_LEN(SITELIB_STEM), INCPUSH_ADD_OLD_VERS|INCPUSH_CAN_RELOCATE);
#endif