cvs commit: hugs98/src Makefile.in

Ross Paterson ross@soi.city.ac.uk
Fri, 6 Sep 2002 18:50:18 +0100


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).