summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Cummings <mcummings@gentoo.org>2006-11-18 16:29:19 +0000
committerMichael Cummings <mcummings@gentoo.org>2006-11-18 16:29:19 +0000
commit4e88b3bcd363e25421d4fdbe9d4bb319dde6059d (patch)
tree3a08858abf938f83205b97ac3612ebcca4cd7fd3 /sys-devel/libperl/files
parentBug 150702; also cleaned up unused patches (diff)
downloadhistorical-4e88b3bcd363e25421d4fdbe9d4bb319dde6059d.tar.gz
historical-4e88b3bcd363e25421d4fdbe9d4bb319dde6059d.tar.bz2
historical-4e88b3bcd363e25421d4fdbe9d4bb319dde6059d.zip
Bug 150702; also cleaned up unused patches
Package-Manager: portage-2.1.2_rc1-r7
Diffstat (limited to 'sys-devel/libperl/files')
-rw-r--r--sys-devel/libperl/files/libperl-reorder-INC.patch40
1 files changed, 0 insertions, 40 deletions
diff --git a/sys-devel/libperl/files/libperl-reorder-INC.patch b/sys-devel/libperl/files/libperl-reorder-INC.patch
deleted file mode 100644
index cc314d97d314..000000000000
--- a/sys-devel/libperl/files/libperl-reorder-INC.patch
+++ /dev/null
@@ -1,40 +0,0 @@
---- perl.c.orig 2005-07-26 13:04:54.000000000 -0400
-+++ perl.c 2005-07-26 13:05:05.000000000 -0400
-@@ -4397,9 +4397,9 @@ S_init_perllib(pTHX)
- incpush(APPLLIB_EXP, TRUE, TRUE, TRUE);
- #endif
-
--#ifdef ARCHLIB_EXP
-- incpush(ARCHLIB_EXP, FALSE, FALSE, TRUE);
--#endif
-+ /* for configuration where /usr is mounted ro (CPAN::Config, Net::Config) */
-+ incpush("/etc/perl", FALSE, FALSE, TRUE);
-+
- #ifdef MACOS_TRADITIONAL
- {
- Stat_t tmpstatbuf;
-@@ -4426,8 +4426,6 @@ S_init_perllib(pTHX)
- #endif
- #if defined(WIN32)
- incpush(PRIVLIB_EXP, TRUE, FALSE, TRUE);
--#else
-- incpush(PRIVLIB_EXP, FALSE, FALSE, TRUE);
- #endif
-
- #ifdef SITEARCH_EXP
-@@ -4471,6 +4469,15 @@ S_init_perllib(pTHX)
- incpush(PERL_VENDORLIB_STEM, FALSE, TRUE, TRUE);
- #endif
-
-+ incpush(ARCHLIB_EXP, FALSE, FALSE, TRUE);
-+ incpush(PRIVLIB_EXP, FALSE, FALSE, TRUE);
-+
-+ /* Non-versioned site directory for local modules and for
-+ compatability with the previous packages' site dirs */
-+
-+ incpush("/usr/local/lib/site_perl", TRUE, FALSE, TRUE);
-+
-+
- #ifdef PERL_OTHERLIBDIRS
- incpush(PERL_OTHERLIBDIRS, TRUE, TRUE, TRUE);
- #endif