diff options
author | asami <asami@FreeBSD.org> | 1996-06-13 14:03:39 +0800 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1996-06-13 14:03:39 +0800 |
commit | 271248d25d5c6a2aa4c636538257d9b7084f71af (patch) | |
tree | 31b5ffa5269b168047e89cf11708238dc05fbd77 /Mk | |
parent | e2b63f149b90156f459114ec11d344dd12c6a1ff (diff) | |
download | freebsd-ports-gnome-271248d25d5c6a2aa4c636538257d9b7084f71af.tar.gz freebsd-ports-gnome-271248d25d5c6a2aa4c636538257d9b7084f71af.tar.zst freebsd-ports-gnome-271248d25d5c6a2aa4c636538257d9b7084f71af.zip |
Add "MASTER_SITES?=" (no this is not a typo) right before the
"MASTER_SITES:= ..." of defined(MASTER_SITE_OVERRIDE) case, otherwise
it would cause a recursive variable definition error when
MASTER_SITE_OVERRIDE is set and MASTER_SITES is not set.
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/bsd.port.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index 50d7bc2818ad..b0d2c8d76588 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.204 1996/05/30 08:53:26 asami Exp $ +# $Id: bsd.port.mk,v 1.205 1996/06/01 05:47:42 asami Exp $ # # Please view me with 4 column tabs! @@ -375,6 +375,7 @@ MASTER_SITE_OVERRIDE= ftp://ftp.freebsd.org/pub/FreeBSD/distfiles/${DIST_SUBDIR MASTER_SITES+= ftp://ftp.freebsd.org/pub/FreeBSD/distfiles/${DIST_SUBDIR}/ PATCH_SITES+= ftp://ftp.freebsd.org/pub/FreeBSD/distfiles/${DIST_SUBDIR}/ .else +MASTER_SITES?= # to avoid "variable MASTER_SITES recursive" error MASTER_SITES:= ${MASTER_SITE_OVERRIDE} ${MASTER_SITES} PATCH_SITES:= ${MASTER_SITE_OVERRIDE} ${PATCH_SITES} .endif |