diff options
author | 1996-06-10 11:23:16 +0000 | |
---|---|---|
committer | 1996-06-10 11:23:16 +0000 | |
commit | cba0f6dbe93e10bab5eafb4e6754666195a1ca4e (patch) | |
tree | c5bb53f6c47dbcd279d43f64496bfc7113fd155e | |
parent | Support the long options that FSF's patch version has. $OpenBSD$ added (diff) | |
download | wireguard-openbsd-cba0f6dbe93e10bab5eafb4e6754666195a1ca4e.tar.xz wireguard-openbsd-cba0f6dbe93e10bab5eafb4e6754666195a1ca4e.zip |
Reintroduce the long patch(1) options
-rw-r--r-- | share/mk/bsd.port.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/share/mk/bsd.port.mk b/share/mk/bsd.port.mk index 4e7082b2fb0..325f6412270 100644 --- a/share/mk/bsd.port.mk +++ b/share/mk/bsd.port.mk @@ -1,5 +1,5 @@ # -*- mode: Fundamental; tab-width: 4; -*- -# $OpenBSD: bsd.port.mk,v 1.2 1996/06/03 23:07:28 niklas Exp $ +# $OpenBSD: bsd.port.mk,v 1.3 1996/06/10 11:23:16 niklas Exp $ # # bsd.port.mk - 940820 Jordan K. Hubbard. # This file is in the public domain. @@ -277,8 +277,8 @@ PATCH_DIST_STRIP?= -p0 PATCH_ARGS?= -d ${WRKSRC} -E ${PATCH_STRIP} PATCH_DIST_ARGS?= -d ${WRKSRC} -E ${PATCH_DIST_STRIP} .else -PATCH_ARGS?= -d ${WRKSRC} -N -s -E ${PATCH_STRIP} -PATCH_DIST_ARGS?= -d ${WRKSRC} -N -s -E ${PATCH_DIST_STRIP} +PATCH_ARGS?= -d ${WRKSRC} --forward --quiet -E ${PATCH_STRIP} +PATCH_DIST_ARGS?= -d ${WRKSRC} --forward --quiet -E ${PATCH_DIST_STRIP} .endif .if defined(BATCH) PATCH_ARGS+= --batch |