Re: Remove absolute symlink in $MAKEOBJDIR

2003-06-03 Thread Bruce Evans
On Tue, 3 Jun 2003, Jun Kuriyama wrote: > At Mon, 2 Jun 2003 10:10:26 + (UTC), > Bruce Evans wrote: > > > > (2) Use correct dependency in sys/boot/i386/kgzldr. > > > > This is too hackish for me. Try using the same method as for lib/csu. > > I think you nmainly care about "make install" build

Re: Remove absolute symlink in $MAKEOBJDIR

2003-06-03 Thread Jun Kuriyama
At Mon, 2 Jun 2003 10:10:26 + (UTC), Bruce Evans wrote: > As marcel pointed out, there are technical reasons for not using cp. > Use cat. OK, thanks! > > (2) Use correct dependency in sys/boot/i386/kgzldr. > > This is too hackish for me. Try using the same method as for lib/csu. > I think y

Re: Remove absolute symlink in $MAKEOBJDIR

2003-06-02 Thread Bruce Evans
On Mon, 2 Jun 2003, Jun Kuriyama wrote: > In usual buildworld, we have absolute symbolic links in $MAKEOBJDIR. > This causes built $MAKEOBJDIR can use to install the world on other > boxen only if same /usr/src (or etc.) location and same $MAKEOBJDIR. > > I'm using this patch for months to avoid t

Re: Remove absolute symlink in $MAKEOBJDIR

2003-06-02 Thread Jun Kuriyama
At Sun, 1 Jun 2003 23:33:04 -0700, David O'Brien wrote: > I prefer the ln's over cp. Are you sure this is the only reason for the > same $MAKEOBJDIR requirement? Also, typically one sets MAKEOBJDIRPREFIX, > not MAKEOBJDIR. Are you sure you're using the right one for what you're > wanting to do?

Re: Remove absolute symlink in $MAKEOBJDIR

2003-06-02 Thread David O'Brien
On Mon, Jun 02, 2003 at 02:13:55PM +0900, Jun Kuriyama wrote: > > In usual buildworld, we have absolute symbolic links in $MAKEOBJDIR. > This causes built $MAKEOBJDIR can use to install the world on other > boxen only if same /usr/src (or etc.) location and same $MAKEOBJDIR. > > I'm using this pa

Re: Remove absolute symlink in $MAKEOBJDIR

2003-06-02 Thread Marcel Moolenaar
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:3

Remove absolute symlink in $MAKEOBJDIR

2003-06-02 Thread Jun Kuriyama
In usual buildworld, we have absolute symbolic links in $MAKEOBJDIR. This causes built $MAKEOBJDIR can use to install the world on other boxen only if same /usr/src (or etc.) location and same $MAKEOBJDIR. I'm using this patch for months to avoid this situation. (1) Copy man pages rather than ab