summaryrefslogtreecommitdiff
path: root/Mk/bsd.port.mk
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>1994-09-14 15:30:44 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>1994-09-14 15:30:44 +0000
commit88343bc70dd044c5884d4c06dbc4718a55c212bc (patch)
tree0950d7a337615c4157245e6c1b050229645417c7 /Mk/bsd.port.mk
parentBring in the xpm port. Package files to follow. (diff)
Don't assume / seperator between site name and dist file in fetch.
Notes
Notes: svn path=/head/; revision=95
Diffstat (limited to 'Mk/bsd.port.mk')
-rw-r--r--Mk/bsd.port.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk
index 6dd3859fa2c9..0ed578326146 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.35 1994/09/13 06:43:10 jkh Exp $
+# $Id: bsd.port.mk,v 1.36 1994/09/13 08:40:27 jkh Exp $
#
# Please view me with 4 column tabs!
@@ -125,7 +125,7 @@ PKG_SUFX?= .tgz
# I guess we're in the master distribution business! :) As we gain mirror
# sites for distfiles, add them to this list.
-MASTER_SITES+= ftp://freebsd.cdrom.com/pub/FreeBSD/FreeBSD-current/ports/distfiles
+MASTER_SITES+= ftp://freebsd.cdrom.com/pub/FreeBSD/FreeBSD-current/ports/distfiles/
# Derived names so that they're easily overridable.
DISTFILES?= ${DISTNAME}${EXTRACT_SUFX}
@@ -284,7 +284,7 @@ fetch: pre-fetch
echo ">> $$file doesn't seem to exist on this system."; \
echo ">> Attempting to fetch it from a master site."; \
for site in ${MASTER_SITES}; do \
- if ${NCFTP} ${NCFTPFLAGS} $$site/$$file; then \
+ if ${NCFTP} ${NCFTPFLAGS} $${site}$${file}; then \
echo ">> $$file Fetched!" ; \
break; \
fi \