summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Kuethe <ckuethe@cvs.openbsd.org>2006-11-27 16:57:28 +0000
committerChris Kuethe <ckuethe@cvs.openbsd.org>2006-11-27 16:57:28 +0000
commite62f8f4ad2c8c2f498f5abfca57e8af8f7fed349 (patch)
tree2a1061818fc84abfab6d9c3b411ff76cc88459b3
parent820cb3fcc50f9c770b552e145df102ae0fcdc98e (diff)
Don't search in non-openbsd-default paths - that's what PKG_CONFIG_PATH
is for.
-rw-r--r--usr.bin/pkg-config/pkg-config1
1 files changed, 0 insertions, 1 deletions
diff --git a/usr.bin/pkg-config/pkg-config b/usr.bin/pkg-config/pkg-config
index 76ddff5ddf4..37dede56199 100644
--- a/usr.bin/pkg-config/pkg-config
+++ b/usr.bin/pkg-config/pkg-config
@@ -20,7 +20,6 @@ use warnings;
use Getopt::Long;
my @PKGPATH = qw(/usr/local/lib/pkgconfig /usr/X11R6/lib/pkgconfig );
-push(@PKGPATH, '/usr/local/libdata/pkgconfig', '/usr/X11R6/libdata/pkgconfig');
if (defined($ENV{'PKG_CONFIG_PATH'}) && $ENV{'PKG_CONFIG_PATH'}){
push(@PKGPATH, split(/:/,$ENV{'PKG_CONFIG_PATH'}));