diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1999-03-09 11:27:34 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1999-03-09 11:27:34 +0000 |
commit | 44a8825c91c6e87c60274f916bf556c6bd8ad0eb (patch) | |
tree | cc359ceb2ee029e4d82f264b32a6ffd6f4a6f99b | |
parent | Upgrade to PHP-3.0.7. (diff) |
(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>
Notes
Notes:
svn path=/head/; revision=17114
-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 9dbd6b9b555b..6c6f9db8068b 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 |