diff options
author | jkh <jkh@FreeBSD.org> | 1994-11-01 21:04:27 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1994-11-01 21:04:27 +0000 |
commit | d0ae1acdd01c302a29ab43259226c4b5b91b1bb8 (patch) | |
tree | ccb2d7b1526665265f8cb3b52fde37919f4c1f9c /share | |
parent | e7aabafcd359b09243e79394b2f3cc61b738bc60 (diff) | |
download | FreeBSD-src-d0ae1acdd01c302a29ab43259226c4b5b91b1bb8.zip FreeBSD-src-d0ae1acdd01c302a29ab43259226c4b5b91b1bb8.tar.gz |
This is what I get for implementing suggestions without really thinking
about them.. :-) The patches/* won't work, it needs to be patches/patch-*
to avoid catching things like CVS files when working with a checked-out
copy of ports! Whoops!
Diffstat (limited to 'share')
-rw-r--r-- | share/mk/bsd.port.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/share/mk/bsd.port.mk b/share/mk/bsd.port.mk index e395d6c..ead078f 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.60 1994/10/31 22:51:09 jkh Exp $ +# $Id: bsd.port.mk,v 1.61 1994/11/01 18:09:22 jkh Exp $ # # Please view me with 4 column tabs! @@ -315,7 +315,7 @@ ${CONFIGURE_COOKIE}: @${MAKE} ${.MAKEFLAGS} pre-configure @if [ -d ${PATCHDIR} ]; then \ echo "===> Applying patches for ${DISTNAME}" ; \ - for i in ${PATCHDIR}/*; do \ + for i in ${PATCHDIR}/patch-*; do \ ${PATCH} ${PATCH_ARGS} < $$i; \ done; \ fi |