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 /games/flightgear-base | |
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 'games/flightgear-base')
-rw-r--r-- | games/flightgear-base/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/games/flightgear-base/Makefile b/games/flightgear-base/Makefile index 92e3d5d30f5..e0d7f76c4cb 100644 --- a/games/flightgear-base/Makefile +++ b/games/flightgear-base/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2008/03/14 14:49:53 drochner Exp $ +# $NetBSD: Makefile,v 1.4 2008/05/26 02:13:19 joerg Exp $ # DISTNAME= fgfs-base-1.0.0 @@ -21,6 +21,7 @@ PKG_DESTDIR_SUPPORT= user-destdir WRKSRC= ${WRKDIR}/data NO_BUILD= yes USE_LANGUAGES= # empty +USE_TOOLS+= pax FG_SHAREDIR= ${PREFIX}/share/FlightGear @@ -29,7 +30,7 @@ do-install: ( \ cd ${WRKSRC}; \ ${FIND} . -type f -name .\* -print|${XARGS} rm -f; \ - ${PAX} -rwppm . ${DESTDIR}${FG_SHAREDIR}; \ + pax -rwppm . ${DESTDIR}${FG_SHAREDIR}; \ ) .include "../../mk/bsd.pkg.mk" |