summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2000-01-27 06:59:14 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2000-01-27 06:59:14 +0000
commit364290f520c8f08382d37370af1e5eed1ab7febc (patch)
tree7a5f5672dd6af8f9642aadcf43e2a9baeceecfbf /gnu
parent6907aa05155df1f60c1157a9aa383e24a9e296f5 (diff)
Take /usr/local/lib out of glibpth and libpth. Define locincpth and
loclibpth to be /usr/local/include and /usr/local/lib respectively. This allows third party modules to grab stuff from /usr/local/{lib,include} but perl itself doesn't search for things there during a build.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/usr.bin/perl/hints/openbsd.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/usr.bin/perl/hints/openbsd.sh b/gnu/usr.bin/perl/hints/openbsd.sh
index bcb54b4ccb0..692871c868a 100644
--- a/gnu/usr.bin/perl/hints/openbsd.sh
+++ b/gnu/usr.bin/perl/hints/openbsd.sh
@@ -71,11 +71,11 @@ case "$openbsd_distribution" in
prefix='/usr'
prefixexp='/usr'
sysman='/usr/share/man/man1'
+ libpth='/usr/lib'
+ glibpth='/usr/lib'
# Ports installs non-std libs in /usr/local/lib so look there too
- glibpth='/usr/lib /usr/local/lib'
- libpth='/usr/lib /usr/local/lib'
- locincpth=''
- loclibpth=''
+ locincpth='/usr/local/include'
+ loclibpth='/usr/local/lib'
# Link perl with shared libperl
if [ "$usedl" = "$define" -a -r shlib_version ]; then
useshrplib=true