diff options
author | jperkin <jperkin@pkgsrc.org> | 2013-07-03 12:31:33 +0000 |
---|---|---|
committer | jperkin <jperkin@pkgsrc.org> | 2013-07-03 12:31:33 +0000 |
commit | f5cfb7c668582c31699f3b66c57e29fe29704701 (patch) | |
tree | 41f6694ac7886b8e468c59229ea05866f0457a50 /mk | |
parent | 43781b1bfdbbfecc118f7ac8b5a3a1a36ce6cb70 (diff) | |
download | pkgsrc-f5cfb7c668582c31699f3b66c57e29fe29704701.tar.gz |
Revert back to avoiding the native SunOS pax by default.
Whilst it works for the most part, the mk/extract/extract script expects
an -O flag which it does not support, and adding conditionals to that
script would be messy.
Fixes 5 direct packages.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/tools/tools.SunOS.mk | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mk/tools/tools.SunOS.mk b/mk/tools/tools.SunOS.mk index bae60fc54aa..105f5ada8c1 100644 --- a/mk/tools/tools.SunOS.mk +++ b/mk/tools/tools.SunOS.mk @@ -1,4 +1,4 @@ -# $NetBSD: tools.SunOS.mk,v 1.42 2013/02/12 15:08:48 jperkin Exp $ +# $NetBSD: tools.SunOS.mk,v 1.43 2013/07/03 12:31:33 jperkin Exp $ # # System-supplied tools for the Solaris operating system. # @@ -158,7 +158,8 @@ TOOLS_PLATFORM.openssl?= /usr/bin/openssl # Don't use GNU patch #TOOLS_PLATFORM.gpatch?= /usr/bin/gpatch #TOOLS_PLATFORM.patch?= /usr/bin/gpatch -TOOLS_PLATFORM.pax?= /bin/pax +# Native pax doesn't support -O required by mk/extract/extract +#TOOLS_PLATFORM.pax?= /bin/pax #.if exists(/usr/bin/perl) #TOOLS_PLATFORM.perl?= /usr/bin/perl #TOOLS_PLATFORM.pod2man?= /usr/perl5/bin/pod2man |