diff options
author | hans <hans@pkgsrc.org> | 2011-10-04 13:07:21 +0000 |
---|---|---|
committer | hans <hans@pkgsrc.org> | 2011-10-04 13:07:21 +0000 |
commit | 7b5cf7f16fc7c4d506168dc708307a110c7c51f8 (patch) | |
tree | 51198cc59c3844207fb1de7fe549d86d817ffee3 | |
parent | 9a56632c9e4e0f76a37f3cbbe9fd41b56cf471ad (diff) | |
download | pkgsrc-7b5cf7f16fc7c4d506168dc708307a110c7c51f8.tar.gz |
Re-enable pkg-config on SunOS 5.11.
-rw-r--r-- | mk/tools/tools.SunOS.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mk/tools/tools.SunOS.mk b/mk/tools/tools.SunOS.mk index 057a3294c9c..2a53dcb493f 100644 --- a/mk/tools/tools.SunOS.mk +++ b/mk/tools/tools.SunOS.mk @@ -1,4 +1,4 @@ -# $NetBSD: tools.SunOS.mk,v 1.33 2011/09/29 14:09:11 hans Exp $ +# $NetBSD: tools.SunOS.mk,v 1.34 2011/10/04 13:07:21 hans Exp $ # # System-supplied tools for the Solaris operating system. # @@ -141,9 +141,9 @@ TOOLS_PLATFORM.patch?= /usr/bin/gpatch #TOOLS_PLATFORM.perl?= /usr/bin/perl #TOOLS_PLATFORM.pod2man?= /usr/perl5/bin/pod2man #.endif -#.if exists(/usr/bin/pkg-config) -#TOOLS_PLATFORM.pkg-config?= /usr/bin/pkg-config -#.endif +.if ${OS_VERSION} == "5.11" && exists(/usr/bin/pkg-config) +TOOLS_PLATFORM.pkg-config?= /usr/bin/pkg-config +.endif TOOLS_PLATFORM.printf?= /bin/printf TOOLS_PLATFORM.pwd?= /bin/pwd .if exists(/usr/gnu/bin/readelf) |