summaryrefslogtreecommitdiff
path: root/Mk
diff options
context:
space:
mode:
authorSatoshi Asami <asami@FreeBSD.org>1995-07-24 08:02:07 +0000
committerSatoshi Asami <asami@FreeBSD.org>1995-07-24 08:02:07 +0000
commit8b6998ea0b5d63233a7fc2b84180cb98df1316ba (patch)
tree2a991549d1e2d6066a723d72a234f7d45d3c87d8 /Mk
parentRemove redundant mkdir of share/emacs/site-lisp from post-install. (diff)
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
Notes
Notes: svn path=/head/; revision=2004
Diffstat (limited to '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)