Re: Shellology: ksh93 from OpenIndiana ${1+"$@"}

2016-01-10 Thread Pavel Raiskup
On Sunday 13 of December 2015 20:07:59 Paul Eggert wrote: > On 12/10/2015 05:55 AM, Pavel Raiskup wrote: > > Is this issue worth documenting in Shellology section > > withing autoconf.info? This probably should be fixed somehow in libtool, > > but I'm not yet sure what is the proper way. > > It

Re: Shellology: ksh93 from OpenIndiana ${1+"$@"}

2015-12-13 Thread Paul Eggert
On 12/10/2015 05:55 AM, Pavel Raiskup wrote: Is this issue worth documenting in Shellology section withing autoconf.info? This probably should be fixed somehow in libtool, but I'm not yet sure what is the proper way. It should be documented. I suggest changing Autoconf and Libtool to

Shellology: ksh93 from OpenIndiana ${1+"$@"}

2015-12-10 Thread Pavel Raiskup
Bob sent me a bug report that libtool's testsuite is currently broken on Open Indiana, this the underlying problem: $ cat test.sh #! /bin/sh f () { echo "arguments: $#" } f ${1+"$@"} $ ./test.sh a arguments: 1 $ ./test.sh a b arguments: 2 $ ./test.sh a b ""