aboutsummaryrefslogtreecommitdiffstats
path: root/Mk/bsd.port.mk
diff options
context:
space:
mode:
authorasami <asami@FreeBSD.org>1995-07-24 16:02:07 +0800
committerasami <asami@FreeBSD.org>1995-07-24 16:02:07 +0800
commite38707e497600738694a12eee5e0246ab05ef48a (patch)
treee94a44469f0c666f3cce42c1c8284753e679850b /Mk/bsd.port.mk
parent7b53c9a089fbc13f63f35946521706694d311eb0 (diff)
downloadfreebsd-ports-gnome-e38707e497600738694a12eee5e0246ab05ef48a.tar.gz
freebsd-ports-gnome-e38707e497600738694a12eee5e0246ab05ef48a.tar.zst
freebsd-ports-gnome-e38707e497600738694a12eee5e0246ab05ef48a.zip
Let MASTER_SITE_OVERRIDE be prepended to the MASTER_SITES list instead
of replacing it. This way you can point it to a site close to you that carries many distfiles, and still let it go fetch from the original site if the distfile is not there. Original idea by: mmead@Glock.COM
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 10091ce163fb..3d2d88075e5d 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.172 1995/07/15 14:07:02 jkh Exp $
+# $Id: bsd.port.mk,v 1.173 1995/07/17 16:20:58 jkh Exp $
#
# Please view me with 4 column tabs!
@@ -313,8 +313,8 @@ MASTER_SITE_OVERRIDE= ftp://ftp.freebsd.org/pub/FreeBSD/distfiles/
MASTER_SITES+= ftp://ftp.freebsd.org/pub/FreeBSD/distfiles/
PATCH_SITES+= ftp://ftp.freebsd.org/pub/FreeBSD/distfiles/${PATCH_PRFX}
.else
-MASTER_SITES= ${MASTER_SITE_OVERRIDE}
-PATCH_SITES= ${MASTER_SITE_OVERRIDE}${PATCH_PRFX}
+MASTER_SITES:= ${MASTER_SITE_OVERRIDE} ${MASTER_SITES}
+PATCH_SITES:= ${MASTER_SITE_OVERRIDE}${PATCH_PRFX} ${PATCH_SITES}
.endif
.if defined(PATCH_PRFX)