diff options
author | rillig <rillig> | 2006-06-17 18:17:29 +0000 |
---|---|---|
committer | rillig <rillig> | 2006-06-17 18:17:29 +0000 |
commit | 8e3064f73726f9065788cbb90fbbe8ba3f1a1c6c (patch) | |
tree | e6eea3e332bab69643e657d1d583877255f223e4 /games/abuse/Makefile | |
parent | a264fa849c99e7c2daaab20b87d8623a541a998a (diff) | |
download | pkgsrc-8e3064f73726f9065788cbb90fbbe8ba3f1a1c6c.tar.gz |
Fixed pkglint warnings, especially absolute paths and hard-coded
usernames. Now it is possible to install this package as unprivileged
user.
Diffstat (limited to 'games/abuse/Makefile')
-rw-r--r-- | games/abuse/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/games/abuse/Makefile b/games/abuse/Makefile index 7823640b6a1..332358836a3 100644 --- a/games/abuse/Makefile +++ b/games/abuse/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.19 2006/02/05 23:09:12 joerg Exp $ +# $NetBSD: Makefile,v 1.20 2006/06/17 18:17:29 rillig Exp $ DISTNAME= abuse_pd PKGNAME= abuse-2.0 @@ -22,7 +22,7 @@ NOT_FOR_PLATFORM= NetBSD-*-arm32 .include "../../mk/x11.buildlink3.mk" post-extract: - cd ${WRKSRC}/abuse && \ - ${GZCAT} ${DISTDIR}/abuse_data.tar.gz | ${GTAR} xf - + cd ${WRKSRC}/abuse \ + && ${GTAR} xfz ${DISTDIR}/abuse_data.tar.gz .include "../../mk/bsd.pkg.mk" |