....
updating cache ./config.cache
creating ./config.status
creating Makefile
sed: can't read :Makefile.in: No such file or directory
creating Doc/Makefile
sed: can't read :Doc/Makefile.in: No such file or directory
creating Etc/Makefile
sed: can't read :Etc/Makefile.in: No such file or directory
creating Src/Makefile
sed: can't read :Src/Makefile.in: No such file or directory
creating config.h
cat: :config.h.in: No such file or directory
I wonder if something is wrong with my system configuration, or is it
a real bug? I used autoconf before on the same machine, everything
seemed to be all right.
Regards,
Dima.
> I wonder if something is wrong with my system configuration, or is it
> a real bug? I used autoconf before on the same machine, everything
> seemed to be all right.
It's a real bug (although not necessarily in zsh). For a quick fix,
use a different shell to do the configuring:
bash ./configure ...
say. zsh when run as sh apparently also works.
zsh run as sh is probably the simplest answer for existing zsh users:
from zsh just do
ARGV0=sh zsh ./configure
-zefram