summaryrefslogtreecommitdiff
path: root/perl.c
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>1999-07-25 14:12:34 +0000
committerJarkko Hietaniemi <jhi@iki.fi>1999-07-25 14:12:34 +0000
commita3635516d37f70bc16a39bf453a8d19cc1f3181b (patch)
tree5dda19457eaef39719b2571ee3bb3e42509c9440 /perl.c
parentb233458bd1d5037ce4bbbb41fb513e1b68522a4d (diff)
downloadperl-a3635516d37f70bc16a39bf453a8d19cc1f3181b.tar.gz
Use vendorprefixlib.
p4raw-id: //depot/cfgperl@3737
Diffstat (limited to 'perl.c')
-rw-r--r--perl.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/perl.c b/perl.c
index 23aec9705e..b90bc7ba14 100644
--- a/perl.c
+++ b/perl.c
@@ -2768,6 +2768,12 @@ S_init_perllib(pTHX)
#else
incpush(SITELIB_EXP, FALSE);
#endif
+#if defined(PERL_VENDORLIB_EXP)
+#if defined(WIN32)
+ incpush(PERLVENDORLIB_EXP, TRUE);
+#else
+ incpush(PERL_VENDORLIB_EXP, FALSE);
+#endif
#endif
if (!PL_tainting)
incpush(".", FALSE);