diff options
author | Chris Kuethe <ckuethe@cvs.openbsd.org> | 2006-11-27 16:57:28 +0000 |
---|---|---|
committer | Chris Kuethe <ckuethe@cvs.openbsd.org> | 2006-11-27 16:57:28 +0000 |
commit | e62f8f4ad2c8c2f498f5abfca57e8af8f7fed349 (patch) | |
tree | 2a1061818fc84abfab6d9c3b411ff76cc88459b3 | |
parent | 820cb3fcc50f9c770b552e145df102ae0fcdc98e (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-config | 1 |
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'})); |