summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>1994-10-31 22:51:09 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>1994-10-31 22:51:09 +0000
commite4e0523fdbfaf089f8fafd92c603bc1362ea61cd (patch)
tree8f93c843fb0c14ed32e96cdb354b36a7b542ea67
parentAdd xearth port. (diff)
Make patch rule pick up everything in patchdir alphabetically.
No need to call it `patch-aa' if you can simply call it `aa', etc.
Notes
Notes: svn path=/head/; revision=303
-rw-r--r--Mk/bsd.port.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk
index 59538617a942..9331264bba42 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.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