diff options
author | joerg <joerg@pkgsrc.org> | 2008-05-26 02:13:14 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2008-05-26 02:13:14 +0000 |
commit | 3d8ef5a52d6570c7a88c64337bb6c476b78c810c (patch) | |
tree | b711f279533efa082bd9211a7161438542a8810d /devel/nss | |
parent | 7f7f5ce9170554e6c0c04606c5c2c0548ffab031 (diff) | |
download | pkgsrc-3d8ef5a52d6570c7a88c64337bb6c476b78c810c.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"; \ |