diff options
author | agc <agc> | 2003-01-26 10:30:50 +0000 |
---|---|---|
committer | agc <agc> | 2003-01-26 10:30:50 +0000 |
commit | 97127795b82658b85da0f503ab9e45553a51a06d (patch) | |
tree | 85d5d5440b77194c0ab67efc27cc2fa32bf00bc3 /games/angband-x11 | |
parent | cea63587c4046171f9f688526a32e3053cd79ab7 (diff) | |
download | pkgsrc-97127795b82658b85da0f503ab9e45553a51a06d.tar.gz |
Use -O to tell pax(1) that there is only 1 volume in the angband spoilers
file. This is a workaround for what seems like a tar archive produced by
GNU tar not being able to be read by our pax(1).
Diffstat (limited to 'games/angband-x11')
-rw-r--r-- | games/angband-x11/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/games/angband-x11/Makefile b/games/angband-x11/Makefile index 2331211a9a5..da9310daf9e 100644 --- a/games/angband-x11/Makefile +++ b/games/angband-x11/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.16 2003/01/24 13:36:19 wiz Exp $ +# $NetBSD: Makefile,v 1.17 2003/01/26 10:30:51 agc Exp $ # DISTNAME= angband-3.0.1 @@ -31,7 +31,7 @@ CONFIGURE_ARGS= --with-setgid=games --prefix=${PREFIX} # add spoiler files and clean up a bit post-install: ${INSTALL_DATA_DIR} ${PREFIX}/share/games/angband/lib/info - cd ${PREFIX}/share/games/angband/lib/info/ && ${PAX} -rzf ${DISTDIR}/${SPOILERFILE} + cd ${PREFIX}/share/games/angband/lib/info/ && ${PAX} -rOzf ${DISTDIR}/${SPOILERFILE} ${CHOWN} -R bin:games ${PREFIX}/share/games/angband ${FIND} ${PREFIX}/share/games/angband -name delete.me -exec ${RM} {} \; |