Carol Leung writes:
> Hi,
>
> I'm trying to install mutt on hpux 10.20. I ran the configure command
> with no problems. When I tried running the 'make install', it would
> hung at the following lines.
>
> ----
>
> No suffix list.
> rm -f Makefile.am Makefile.amt
> sed -n '1,/^##m4-files-begin/p' > Makefile.amt
This is mutt 1.0.x, right? Edit m4/Makefile.am.in like this:
- sed -n '1,/^##m4-files-begin/p' $< > $@t
+ sed -n '1,/^##m4-files-begin/p' Makefile.am.in > $@t
and the same in m4/Makefile.am.
If you have any problems after that, David DeS. will kindly help you out :)
Or use GNU make, if it's installed :-))