diff options
author | asami <asami@FreeBSD.org> | 1999-03-09 11:27:34 +0000 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1999-03-09 11:27:34 +0000 |
commit | 711c89e049b51ef7caf303c1cfc1e295313c0b70 (patch) | |
tree | 90e451948f4bddb59cdf48b0daf8e039dd72bf96 /Mk/bsd.port.mk | |
parent | 9df1e94985fff63e2d9c833b6e7f972b01201818 (diff) | |
download | FreeBSD-ports-711c89e049b51ef7caf303c1cfc1e295313c0b70.zip FreeBSD-ports-711c89e049b51ef7caf303c1cfc1e295313c0b70.tar.gz |
(1) (Forgot to mention in previous commit log) Add
MASTER_SITES_PORTS_JP for storing stuff that people on the
ports-jp mailing list created.
Suggested by: KIRIYAMA Kazuhiko <kiri@pis.toba-cmt.ac.jp>
(2) Conditionalize use of "-A" flag to fetch so the entire ports tree
won't break on 2.2.X machines.
Suggested by: Brian Tiemann <btman@ugcs.caltech.edu>
Diffstat (limited to 'Mk/bsd.port.mk')
-rw-r--r-- | Mk/bsd.port.mk | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index 9dbd6b9..6c6f9db 100644 --- a/Mk/bsd.port.mk +++ b/Mk/bsd.port.mk @@ -1,7 +1,7 @@ #-*- mode: Fundamental; tab-width: 4; -*- # ex:ts=4 # -# $Id: bsd.port.mk,v 1.305 1999/02/14 06:49:55 asami Exp $ +# $Id: bsd.port.mk,v 1.306 1999/03/08 07:23:10 asami Exp $ # $NetBSD: $ # # bsd.port.mk - 940820 Jordan K. Hubbard. @@ -653,7 +653,11 @@ MAKEFILE?= Makefile MAKE_ENV+= PREFIX=${PREFIX} LOCALBASE=${LOCALBASE} X11BASE=${X11BASE} MOTIFLIB="${MOTIFLIB}" CFLAGS="${CFLAGS}" LIBDIR="${LIBDIR}" .if exists(/usr/bin/fetch) +.if ${OSVERSION} < 300000 +FETCH_CMD?= /usr/bin/fetch +.else FETCH_CMD?= /usr/bin/fetch -A +.endif #FETCH_BEFORE_ARGS+= $${CKSIZE:+-S $$CKSIZE} .else FETCH_CMD?= /usr/bin/ftp |