From owner-freebsd-current@FreeBSD.ORG Sun Jun 1 22:55:01 2003 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1466237B401 for ; Sun, 1 Jun 2003 22:55:01 -0700 (PDT) Received: from ns1.xcllnt.net (209-128-86-226.bayarea.net [209.128.86.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 410D643F75 for ; Sun, 1 Jun 2003 22:55:00 -0700 (PDT) (envelope-from marcel@xcllnt.net) Received: from athlon.pn.xcllnt.net (athlon.pn.xcllnt.net [192.168.4.3]) by ns1.xcllnt.net (8.12.9/8.12.9) with ESMTP id h525t0wk098121; Sun, 1 Jun 2003 22:55:00 -0700 (PDT) (envelope-from marcel@piii.pn.xcllnt.net) Received: from athlon.pn.xcllnt.net (localhost [127.0.0.1]) by athlon.pn.xcllnt.net (8.12.9/8.12.9) with ESMTP id h525sx2Y002481; Sun, 1 Jun 2003 22:54:59 -0700 (PDT) (envelope-from marcel@athlon.pn.xcllnt.net) Received: (from marcel@localhost) by athlon.pn.xcllnt.net (8.12.9/8.12.9/Submit) id h525sxl3002480; Sun, 1 Jun 2003 22:54:59 -0700 (PDT) Date: Sun, 1 Jun 2003 22:54:59 -0700 From: Marcel Moolenaar To: Jun Kuriyama Message-ID: <20030602055459.GA2455@athlon.pn.xcllnt.net> References: <7mvfvpcb8s.wl@black.imgsrc.co.jp> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <7mvfvpcb8s.wl@black.imgsrc.co.jp> User-Agent: Mutt/1.5.4i cc: Current Subject: Re: Remove absolute symlink in $MAKEOBJDIR X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 Jun 2003 05:55:01 -0000 On Mon, Jun 02, 2003 at 02:13:55PM +0900, Jun Kuriyama wrote: > > Index: bin/csh/Makefile > =================================================================== > RCS file: /home/ncvs/src/bin/csh/Makefile,v > retrieving revision 1.30 > diff -u -r1.30 Makefile > --- bin/csh/Makefile 2 May 2003 06:39:13 -0000 1.30 > +++ bin/csh/Makefile 2 May 2003 15:01:02 -0000 > @@ -73,7 +73,7 @@ > .endfor > > csh.1: tcsh.man > - ln -sf ${.ALLSRC} ${.TARGET} > + cp ${.ALLSRC} ${.TARGET} > > build-tools: gethost > Please don't use cp(1). When source files are read-only, such as for perforce trees, a buildworld -DNOCLEAN can fail because the copy in the object directory will be read-only too. Use cat(1) or something else that yields a copy that is writable. Thanks, -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net