diff options
author | snj <snj@pkgsrc.org> | 2005-07-31 05:26:50 +0000 |
---|---|---|
committer | snj <snj@pkgsrc.org> | 2005-07-31 05:26:50 +0000 |
commit | b0bf33f925a00f9e3051168caac17ff1e45b51e4 (patch) | |
tree | a0f4ea95121785712d5f904873d3c30855996d87 /mk | |
parent | 7ddb464f70cd86d742e7c417f43e59c4af4c3e14 (diff) | |
download | pkgsrc-b0bf33f925a00f9e3051168caac17ff1e45b51e4.tar.gz |
Relax the glob in ${LOCALPATCHES}/${PKGPATH} to catch all files.
This is a return to the behavior that we had prior to revision 1.5.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/bsd.pkg.patch.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/bsd.pkg.patch.mk b/mk/bsd.pkg.patch.mk index 0bee3814fac..b89759794eb 100644 --- a/mk/bsd.pkg.patch.mk +++ b/mk/bsd.pkg.patch.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.pkg.patch.mk,v 1.16 2005/07/15 18:27:55 jlam Exp $ +# $NetBSD: bsd.pkg.patch.mk,v 1.17 2005/07/31 05:26:50 snj Exp $ # # This Makefile fragment is included by bsd.pkg.mk and defines the # relevant variables and targets for the "patch" phase. @@ -201,7 +201,7 @@ _PKGSRC_PATCHES= # empty _PKGSRC_PATCHES+= ${PATCHDIR}/patch-* .endif .if defined(LOCALPATCHES) && exists(${LOCALPATCHES}/${PKGPATH}) -_PKGSRC_PATCHES+= ${LOCALPATCHES}/${PKGPATH}/patch-* +_PKGSRC_PATCHES+= ${LOCALPATCHES}/${PKGPATH}/* .endif .PHONY: pkgsrc-patch-message do-pkgsrc-patch |