Hi Steffen,
> > > if [ -x "${path}/${pname}" ]; then
> > > echo "${path}/${pname}"
> >
> > This could really do with the `test -f' I pointed out as otherwise
> > it will be unhappy with my compiler collection under
> > /usr/local/bin/cc.
>
> This i do not understand?
$ mkdir cc
$ test -x cc
$ echo $?
0
$ test -f cc && test -x cc
$ echo $?
1
$
autoconf's configure wants -f and -x.
--
Cheers, Ralph.
https://plus.google.com/+RalphCorderoy
