diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2016-11-09 17:09:57 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2016-11-09 17:09:57 +0000 |
commit | 3476aff871cc4fcfd5926ed556933800267acde9 (patch) | |
tree | 7414ff8a4107d93599aae8d726f42e31b9f8781c | |
parent | b6b3f3389e9b6693042931853761dca751c27b4a (diff) |
Remove /usr/libdata/perl5/site_perl from sitelib and sitearch, now
that we don't install .ph files we only want to search for these
under /usr/local/libdata/perl5/site_perl. OK afresh1@
-rw-r--r-- | gnu/usr.bin/perl/config.over | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/gnu/usr.bin/perl/config.over b/gnu/usr.bin/perl/config.over index adb4355fdcf..f537beced38 100644 --- a/gnu/usr.bin/perl/config.over +++ b/gnu/usr.bin/perl/config.over @@ -1,7 +1,7 @@ # # Override default paths when building in the OpenBSD src tree # -# $OpenBSD: config.over,v 1.20 2014/11/17 21:36:21 afresh1 Exp $ +# $OpenBSD: config.over,v 1.21 2016/11/09 17:09:56 millert Exp $ # # We use a different architecture name than the default @@ -27,14 +27,12 @@ installprivlib="/usr/libdata/perl5" privlib="${installprivlib}:/usr/local/libdata/perl5" privlibexp="${privlib}" -# NOTE: primary dir for sitearch lives in /usr/local installsitearch="/usr/local/libdata/perl5/site_perl/${archname}" -sitearch="${installsitearch}:/usr/libdata/perl5/site_perl/${archname}" +sitearch="${installsitearch}" sitearchexp="${sitearch}" -# NOTE: primary dir for sitelib lives in /usr/local installsitelib="/usr/local/libdata/perl5/site_perl" -sitelib="${installsitelib}:/usr/libdata/perl5/site_perl" +sitelib="${installsitelib}" sitelibexp="${sitelib}" installstyle="${privlib}" |