summaryrefslogtreecommitdiff
path: root/Mk
diff options
context:
space:
mode:
authorWolfram Schneider <wosch@FreeBSD.org>1996-08-25 21:07:38 +0000
committerWolfram Schneider <wosch@FreeBSD.org>1996-08-25 21:07:38 +0000
commit18c444948af0e3aa0e41a1f59fd584c6ab8a8ff1 (patch)
tree4e57e4f62819e1a9b6321b9e54d2a9c8f53fb991 /Mk
parentCompress manpages so this one actually packages. :) (diff)
/bin/echo -> ${ECHO}
/usr/bin/sed -> ${SED}
Notes
Notes: svn path=/head/; revision=3701
Diffstat (limited to 'Mk')
-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 b1f0b943b744..c5f3539458bb 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.222 1996/08/20 10:00:33 asami Exp $
+# $Id: bsd.port.mk,v 1.223 1996/08/24 09:28:48 asami Exp $
#
# Please view me with 4 column tabs!
@@ -1221,7 +1221,7 @@ misc-depends:
.if !target(depends-list)
depends-list:
@for i in ${FETCH_DEPENDS} ${BUILD_DEPENDS} ${LIB_DEPENDS} ${DEPENDS}; do \
- dir=`/bin/echo $$i | /usr/bin/sed -e 's/.*://'`; \
+ dir=`${ECHO} $$i | ${SED} -e 's/.*://'`; \
(cd $$dir ; ${MAKE} package-name depends-list); \
done
.endif