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!
This commit is contained in:
Jordan K. Hubbard 1994-11-01 21:04:27 +00:00
parent fe160e4a4b
commit a40317a9f9
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=310

View File

@ -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