cvs commit: hugs98/src Makefile.in

lewie 2002/09/06 08:52:25 PDT Modified files: src Makefile.in Log: Add `libraries' target that runs the convert scripts. Revision Changes Path 1.17 +12 -0 hugs98/src/Makefile.in

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

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
participants (3)
-
Jeff Lewis
-
Jeffrey R Lewis
-
Ross Paterson