Date: Tue, 9 Mar 1999 23:49:04 +0100 From: Dirk Froemberg <dirk@FreeBSD.org> To: Satoshi Asami <asami@FreeBSD.org> Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/Mk bsd.port.mk Message-ID: <19990309234904.A35636@physik.TU-Berlin.DE> In-Reply-To: <199903091127.DAA22246@freefall.freebsd.org>; from Satoshi Asami on Tue, Mar 09, 1999 at 03:27:36AM -0800 References: <199903091127.DAA22246@freefall.freebsd.org>
next in thread | previous in thread | raw e-mail | index | archive | help
Hi Satoshi! It's broken for 3.1-RELEASE now... fetch shipped with 3.1-STABLE has the -A flag, but fetch from 3.1-RELEASE doesn't. So I think we need to increment __FreeBSD_version in src/sys/sys/param.h for 3.1-STABLE (3.1-RELEASE and 3.1-STABLE have the same version 310000 at the moment) and apply the following patch to bsd.port.mk: --- bsd.port.mk.orig Tue Mar 9 12:27:34 1999 +++ bsd.port.mk Tue Mar 9 23:47:43 1999 @@ -653,10 +653,10 @@ 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 +.if ${OSVERSION} > 310000 FETCH_CMD?= /usr/bin/fetch -A +.else +FETCH_CMD?= /usr/bin/fetch .endif #FETCH_BEFORE_ARGS+= $${CKSIZE:+-S $$CKSIZE} .else Best regards Dirk On Tue, Mar 09, 1999 at 03:27:36AM -0800, Satoshi Asami wrote: > asami 1999/03/09 03:27:36 PST > > Modified files: > Mk bsd.port.mk > Log: > (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> > > Revision Changes Path > 1.307 +5 -1 ports/Mk/bsd.port.mk -- e-mail: dirk@FreeBSD.ORG To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?19990309234904.A35636>