diff options
author | Emanuel Haupt <ehaupt@FreeBSD.org> | 2005-12-31 15:45:44 +0000 |
---|---|---|
committer | Emanuel Haupt <ehaupt@FreeBSD.org> | 2005-12-31 15:45:44 +0000 |
commit | ee8d803ab5bd0e379fcfd8c02e0b0ba75acb5ead (patch) | |
tree | f028be74c7ca677852028dedf5c4491406dc9352 /games/quake-source | |
parent | b3656dfaff1c98cd63263e666d95e34e609c31d1 (diff) |
Prevent original file from being installed after patching
PR: 91136
Submitted by: Alejandro Pulver <alejandro@varnet.biz> (maintainer)
Notes
Notes:
svn path=/head/; revision=152489
Diffstat (limited to 'games/quake-source')
-rw-r--r-- | games/quake-source/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/games/quake-source/Makefile b/games/quake-source/Makefile index 125a63437bdd..bdc85c01b2ce 100644 --- a/games/quake-source/Makefile +++ b/games/quake-source/Makefile @@ -43,6 +43,9 @@ pre-patch: ${GREP} 'CRLF' | ${SED} -e 's/:.*//' | \ ${XARGS} ${REINPLACE_CMD} -i "" -e "s/`${PRINTF} '\r'`$$//" +post-patch: + @${RM} ${WRKSRC}/send/v101qc/progs.src.orig + do-install: @${MKDIR} ${DATADIR} @${CP} -R ${WRKSRC}/send/v101qc ${DATADIR} |