
6 Sep
2002
6 Sep
'02
1:57 p.m.
On Friday 06 September 2002 10:50 am, Ross Paterson wrote:
On Fri, Sep 06, 2002 at 08:52:25AM -0700, Jeff Lewis wrote:
lewie 2002/09/06 08:52:25 PDT
Modified files: src Makefile.in Log: Add `libraries' target that runs the convert scripts.
You have:
libraries : $(FPTOOLS) cd unix; ./convert_hslibs ../$(FPTOOLS) cd unix; ./convert_libraries ../$(FPTOOLS)
i.e. $(FPTOOLS) is relative to src, and absolute paths won't work. How about
cd unix; ./convert_hslibs $(FPTOOLS) cd unix; ./convert_libraries $(FPTOOLS)
So the argument to --with-fptools can be either absolute or relative to src/unix (where they're running configure).
Quite right. Thanks. --Jeff