diff options
author | grant <grant> | 2003-04-10 01:28:03 +0000 |
---|---|---|
committer | grant <grant> | 2003-04-10 01:28:03 +0000 |
commit | 3658cb69164d87994099b24340f06a30f37dd521 (patch) | |
tree | c67db081e20351feb52d2ca5fbde4b2c17aa2887 /games/fortunes-de/Makefile | |
parent | 217d57c2dcbe8490f0672ad2d0cd57c35a195d16 (diff) | |
download | pkgsrc-3658cb69164d87994099b24340f06a30f37dd521.tar.gz |
make ${PAX} usage consistent:
- group 'zrw' and 'p' args, -s last
- use the && operator consistently
- strip unneeded parens
- some whitespace cleanup
Diffstat (limited to 'games/fortunes-de/Makefile')
-rw-r--r-- | games/fortunes-de/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/games/fortunes-de/Makefile b/games/fortunes-de/Makefile index 3f26c3b0bab..e62c977e333 100644 --- a/games/fortunes-de/Makefile +++ b/games/fortunes-de/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2003/03/29 12:41:03 jmmv Exp $ +# $NetBSD: Makefile,v 1.3 2003/04/10 01:28:16 grant Exp $ # DISTNAME= fortunes-de_0.6.orig @@ -19,6 +19,6 @@ do-build: do-install: ${INSTALL_DATA_DIR} ${PREFIX}/share/games/fortune/de - (cd ${WRKSRC}/data; ${PAX} -rw . ${PREFIX}/share/games/fortune/de) + cd ${WRKSRC}/data && ${PAX} -rw . ${PREFIX}/share/games/fortune/de .include "../../mk/bsd.pkg.mk" |