diff options
author | asami <asami@FreeBSD.org> | 2000-03-03 20:06:13 +0000 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 2000-03-03 20:06:13 +0000 |
commit | 612dc69322519984958de39cbf5971134975aaa3 (patch) | |
tree | dbecc6723b784b6145efd56f4a015c04e79e0dec /net | |
parent | 7e0870b6f018cf2fda420529e26c57365e48a22e (diff) | |
download | FreeBSD-ports-612dc69322519984958de39cbf5971134975aaa3.zip FreeBSD-ports-612dc69322519984958de39cbf5971134975aaa3.tar.gz |
Use EXTRA_PATCHES instead of copying a patch into ${PATCHDIR}, which
can be read-only.
Diffstat (limited to 'net')
-rw-r--r-- | net/tac_plus4/Makefile | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/net/tac_plus4/Makefile b/net/tac_plus4/Makefile index 20b2c6b..e9db8f5 100644 --- a/net/tac_plus4/Makefile +++ b/net/tac_plus4/Makefile @@ -16,13 +16,11 @@ MAINTAINER= tasic@lucky.net ALL_TARGET= tac_plus MAN1= tac_plus.1 -EXTRA_PATCH= patch-ba # To change the text displayed when users are prompted to enter # a username, set appropriately TAC_CHANGE_PROMPT variable. .if defined(TAC_CHANGE_PROMPT) && ${TAC_CHANGE_PROMPT} == YES -pre-patch: - @${CP} ${FILESDIR}/${EXTRA_PATCH} ${PATCHDIR} +EXTRA_PATCHES= ${FILESDIR}/patch-ba .endif do-install: @@ -44,7 +42,4 @@ do-install: post-install: strip ${PREFIX}/sbin/tac_plus -pre-clean: - @${RM} -f ${PATCHDIR}/${EXTRA_PATCH} - .include <bsd.port.mk> |