From 3b777bb48ecd6a599e86393b690784822a7a696f Mon Sep 17 00:00:00 2001 From: Gurusamy Sarathy Date: Fri, 28 Apr 2000 18:44:15 +0000 Subject: support additional library locations via $Config{otherlibdirs} (from Andy Dougherty) p4raw-id: //depot/perl@6001 --- perl.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'perl.c') diff --git a/perl.c b/perl.c index f81648c80d..dce558f362 100644 --- a/perl.c +++ b/perl.c @@ -3324,6 +3324,10 @@ S_init_perllib(pTHX) incpush(PERL_VENDORLIB_STEM, FALSE, TRUE); #endif +#ifdef PERL_OTHERLIBDIRS + incpush(PERL_OTHERLIBDIRS, TRUE, TRUE); +#endif + if (!PL_tainting) incpush(".", FALSE, FALSE); } -- cgit v1.2.1