From owner-cvs-all Tue Mar 9 14:49:33 1999 Delivered-To: cvs-all@freebsd.org Received: from emmi.physik.TU-Berlin.DE (emmi.physik.TU-Berlin.DE [130.149.160.103]) by hub.freebsd.org (Postfix) with ESMTP id A31FD14E6E; Tue, 9 Mar 1999 14:49:28 -0800 (PST) (envelope-from ibex@emmi.physik.TU-Berlin.DE) Received: (from ibex@localhost) by emmi.physik.TU-Berlin.DE (8.9.2/8.9.2) id XAA35803; Tue, 9 Mar 1999 23:49:04 +0100 (CET) (envelope-from ibex) Date: Tue, 9 Mar 1999 23:49:04 +0100 From: Dirk Froemberg To: Satoshi Asami 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> References: <199903091127.DAA22246@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <199903091127.DAA22246@freefall.freebsd.org>; from Satoshi Asami on Tue, Mar 09, 1999 at 03:27:36AM -0800 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk 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 > > (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 > > 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