diff options
author | hans <hans> | 2011-12-16 16:53:03 +0000 |
---|---|---|
committer | hans <hans> | 2011-12-16 16:53:03 +0000 |
commit | 3f9e37e31a6e709481092a7d8b1c8b90802d1349 (patch) | |
tree | a4557d2178a9eab20f119f3483ca9fc67b1c29cf | |
parent | e295aed9736b4fcdac77c9a1d77a21537ff35d88 (diff) | |
download | pkgsrc-3f9e37e31a6e709481092a7d8b1c8b90802d1349.tar.gz |
The native tar (gtar) on SunOS 5.10 doesn't like the distfile. Since
archivers/pax is required anyway, unset TOOLS_PLATFORM.tar on SunOS.
-rw-r--r-- | meta-pkgs/boost/Makefile.common | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/meta-pkgs/boost/Makefile.common b/meta-pkgs/boost/Makefile.common index e5db8b4d8fe..0d169ed2fc6 100644 --- a/meta-pkgs/boost/Makefile.common +++ b/meta-pkgs/boost/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.30 2011/10/11 10:02:08 adam Exp $ +# $NetBSD: Makefile.common,v 1.31 2011/12/16 16:53:03 hans Exp $ # # used by devel/boost-build/Makefile # used by devel/boost-docs/Makefile @@ -53,6 +53,11 @@ SUBST_SED.darwin= -e 's,-install_name ",-install_name "${PREFIX}/lib/,g' .include "../../mk/bsd.prefs.mk" +# On SunOS, extract using pkgsrc nbtar to avoid warnings from native gtar. +.if ${OPSYS} == "SunOS" +TOOLS_PLATFORM.tar= #empty +.endif + .if ${OPSYS} == "Darwin" # Prevent using a pkgsrc libtool in OS X because the darwin toolset needs # the native libtool from /Developer/usr/bin or /usr/bin. |