summaryrefslogtreecommitdiff
path: root/Mk/bsd.port.mk
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>1994-09-28 14:19:30 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>1994-09-28 14:19:30 +0000
commit0fedcf6dce02e12f9d020915f3b720174434ac06 (patch)
treebb3d22002716b3ec70d02f0b923c166fe07264cf /Mk/bsd.port.mk
parentSynchronize the ports with the Makefiles. (diff)
Don't hardcode patch and its arguments. Not quite the same patch as submitted
by Robert Withrow, but he prodded me into thinking about it again. Thanks, Rob.
Notes
Notes: svn path=/head/; revision=136
Diffstat (limited to 'Mk/bsd.port.mk')
-rw-r--r--Mk/bsd.port.mk8
1 files changed, 6 insertions, 2 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk
index f3afcdf783af..afccd3298284 100644
--- a/Mk/bsd.port.mk
+++ b/Mk/bsd.port.mk
@@ -3,7 +3,7 @@
# bsd.port.mk - 940820 Jordan K. Hubbard.
# This file is in the public domain.
#
-# $Id: bsd.port.mk,v 1.39 1994/09/19 01:08:35 jkh Exp $
+# $Id: bsd.port.mk,v 1.40 1994/09/22 07:45:30 swallace Exp $
#
# Please view me with 4 column tabs!
@@ -115,6 +115,10 @@ MAKEFILE?= Makefile
NCFTP?= ncftp
NCFTPFLAGS?= -N
+PATCH?= patch
+PATCH_STRIP?= -p0
+PATCH_ARGS?= -d ${WRKSRC} --quiet -E ${PATCH_STRIP}
+
EXTRACT_CMD?= tar
EXTRACT_SUFX?= .tar.gz
EXTRACT_ARGS?= -C ${WRKDIR} -xzf
@@ -245,7 +249,7 @@ ${CONFIGURE_COOKIE}:
@if [ -d ${PATCHDIR} ]; then \
echo "===> Applying patches for ${DISTNAME}" ; \
for i in ${PATCHDIR}/patch-*; do \
- patch -d ${WRKSRC} --quiet -E -p0 < $$i; \
+ ${PATCH} ${PATCH_ARGS} < $$i; \
done; \
fi
# We have a small convention for our local configure scripts, which