diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2000-01-18 03:07:28 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2000-01-18 03:07:28 +0000 |
commit | c83913ee0ee7ed92be28fbe886513ad5d48b3e5c (patch) | |
tree | 5e92bf100c79ab13e90cd8e41bc779be2b49cde8 | |
parent | 7447457277e6d12eabf22a42a195a3e5b85d87d1 (diff) |
Add /usr/local/lib to libpth/glibpth since ports installs things
in /usr/local/lib.
-rw-r--r-- | gnu/usr.bin/perl/hints/openbsd.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/usr.bin/perl/hints/openbsd.sh b/gnu/usr.bin/perl/hints/openbsd.sh index 34c4c142006..bcb54b4ccb0 100644 --- a/gnu/usr.bin/perl/hints/openbsd.sh +++ b/gnu/usr.bin/perl/hints/openbsd.sh @@ -71,9 +71,9 @@ case "$openbsd_distribution" in prefix='/usr' prefixexp='/usr' sysman='/usr/share/man/man1' - # Never look for things in /usr/local - glibpth='/usr/lib' - libpth='/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='' # Link perl with shared libperl |