diff options
author | joerg <joerg> | 2008-05-26 02:13:14 +0000 |
---|---|---|
committer | joerg <joerg> | 2008-05-26 02:13:14 +0000 |
commit | 2374ca422f2eb8b46ed600c7bb21740b2865d899 (patch) | |
tree | b711f279533efa082bd9211a7161438542a8810d /devel/nss | |
parent | ef56178a4a7ad8f02178aa72c5c4a4567ade918b (diff) | |
download | pkgsrc-2374ca422f2eb8b46ed600c7bb21740b2865d899.tar.gz |
Second round of explicit pax dependencies. As reminded by tnn@,
many packages used to use ${PAX}. Use the common way of directly calling
pax, it is created as tool after all.
Diffstat (limited to 'devel/nss')
-rw-r--r-- | devel/nss/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/devel/nss/Makefile b/devel/nss/Makefile index 65dce99e572..25f18517c9f 100644 --- a/devel/nss/Makefile +++ b/devel/nss/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.30 2008/03/21 01:12:15 obache Exp $ +# $NetBSD: Makefile,v 1.31 2008/05/26 02:13:17 joerg Exp $ DISTNAME= nss-3.11.5 CATEGORIES= security @@ -14,7 +14,7 @@ PKG_DESTDIR_SUPPORT= user-destdir BUILD_DIRS= mozilla/security/nss -USE_TOOLS+= awk gmake perl +USE_TOOLS+= awk gmake pax perl DIST= ${WRKSRC}/mozilla/dist BUILD_TARGET= nss_build_all MAKE_ENV+= LD_LIBS="-L${BUILDLINK_PREFIX.nspr}/lib/nspr ${COMPILER_RPATH_FLAG}${BUILDLINK_PREFIX.nspr}/lib/nspr ${COMPILER_RPATH_FLAG}${LOCALBASE}/lib/nss" @@ -44,9 +44,9 @@ pre-configure: ${WRKSRC}/mozilla/security/coreconf/ do-install: - (cd ${DIST}/public && ${PAX} -Lrwpe . ${DESTDIR}${PREFIX}/include/nss/ ) + (cd ${DIST}/public && pax -Lrwpe . ${DESTDIR}${PREFIX}/include/nss/ ) (cd ${DIST}/*_OPT.OBJ/lib && \ - ${PAX} -Lrwpe *.${SO_SUFFIX} ${DESTDIR}${PREFIX}/lib/nss/ ) + pax -Lrwpe *.${SO_SUFFIX} ${DESTDIR}${PREFIX}/lib/nss/ ) set -e; \ { ${ECHO} "Name: NSS"; \ ${ECHO} "Description: Mozilla Network Security Services"; \ |