Make patch rule pick up everything in patchdir alphabetically.

No need to call it `patch-aa' if you can simply call it `aa', etc.
This commit is contained in:
Jordan K. Hubbard 1994-10-31 22:51:09 +00:00
parent 5bbd5762d9
commit 9c4fb858bb
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=4034

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.58 1994/10/22 09:21:35 jkh Exp $
# $Id: bsd.port.mk,v 1.59 1994/10/22 23:02:39 jkh Exp $
#
# Please view me with 4 column tabs!
@ -308,7 +308,7 @@ ${CONFIGURE_COOKIE}:
@${MAKE} ${.MAKEFLAGS} pre-configure
@if [ -d ${PATCHDIR} ]; then \
echo "===> Applying patches for ${DISTNAME}" ; \
for i in ${PATCHDIR}/patch-*; do \
for i in ${PATCHDIR}/*; do \
${PATCH} ${PATCH_ARGS} < $$i; \
done; \
fi