diff options
author | Alexey Dokuchaev <danfe@FreeBSD.org> | 2005-04-08 09:47:24 +0000 |
---|---|---|
committer | Alexey Dokuchaev <danfe@FreeBSD.org> | 2005-04-08 09:47:24 +0000 |
commit | b900198c535dfeea10646d22a79c9d3bb492c535 (patch) | |
tree | 87b7db43da7457638ac26efac907a98d5bf740ed /games/quake2lnx | |
parent | 0573e251a53635a919ad174d6910c97aa756b275 (diff) |
Fix the case when ports tree is read-only (CDROM and similar media).
Notes
Notes:
svn path=/head/; revision=132746
Diffstat (limited to 'games/quake2lnx')
-rw-r--r-- | games/quake2lnx/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/games/quake2lnx/Makefile b/games/quake2lnx/Makefile index 92ffda461bb7..cacb926d3bb3 100644 --- a/games/quake2lnx/Makefile +++ b/games/quake2lnx/Makefile @@ -403,7 +403,10 @@ do-install: . endif .endif +PKGMESSAGE= ${WRKDIR}/pkg-message + post-install: - @${SED} -e 's|$${DATADIR}|${DATADIR}|g' ${PKGMESSAGE} + @${SED} -e 's|$${DATADIR}|${DATADIR}|g' ${.CURDIR}/pkg-message >${PKGMESSAGE} + @${CAT} ${PKGMESSAGE} .include <bsd.port.post.mk> |