summaryrefslogtreecommitdiffstats
path: root/share
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>1994-09-28 14:19:30 +0000
committerjkh <jkh@FreeBSD.org>1994-09-28 14:19:30 +0000
commit0a36b6fcaa35545c0ca52c5a3c36e9880b82cdc2 (patch)
tree39497d7babe50e92fdf5baa885bae03cb60bffeb /share
parent5b155b93124237facd84c3adb4404a726727acda (diff)
downloadFreeBSD-src-0a36b6fcaa35545c0ca52c5a3c36e9880b82cdc2.zip
FreeBSD-src-0a36b6fcaa35545c0ca52c5a3c36e9880b82cdc2.tar.gz
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.
Diffstat (limited to 'share')
-rw-r--r--share/mk/bsd.port.mk8
1 files changed, 6 insertions, 2 deletions
diff --git a/share/mk/bsd.port.mk b/share/mk/bsd.port.mk
index f3afcdf7..afccd32 100644
--- a/share/mk/bsd.port.mk
+++ b/share/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
OpenPOWER on IntegriCloud