Subject: Re: bmake and bootstrap and own.mk and MKCONF
To: None <tech-pkg@netbsd.org>
From: Klaus Heinz <k.heinz.okt.fuenf@onlinehome.de>
List: tech-pkg
Date: 10/10/2005 00:36:33
Simon J. Gerraty wrote:

> Indeed - and let me guess, the /bin/sh on unixware is even more
> broken?

I _bet_ there was a reason why I avoided /bin/sh but I cannot remember
anymore.
With regard to the problem, /bin/sh actually works:

$ X=one:two:three
$ for d in `IFS=:; echo $X`; do echo $d; done
one
two
three

The way you avoided the problem (moving Which() to the SunOS case) is
probably best...

ciao
     Klaus