From a40317a9f9f1123915650c790408978a7827ba98 Mon Sep 17 00:00:00 2001 From: "Jordan K. Hubbard" Date: Tue, 1 Nov 1994 21:04:27 +0000 Subject: [PATCH] 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! --- Mk/bsd.port.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index e395d6c0ced7..ead078fa9641 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.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