From: rrt Date: Tue, 3 Apr 2001 12:55:01 +0000 (+0000) Subject: [project @ 2001-04-03 12:55:01 by rrt] X-Git-Tag: Approximately_9120_patches~2222 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;ds=sidebyside;h=c00120a25c064f01e272cd5d1972caa760809d94;p=ghc-hetmet.git [project @ 2001-04-03 12:55:01 by rrt] Use UNIX-style path in ghc-inplace shell script, even on a Windows system. --- diff --git a/ghc/compiler/Makefile b/ghc/compiler/Makefile index 4dc4ca4..13a5bf3 100644 --- a/ghc/compiler/Makefile +++ b/ghc/compiler/Makefile @@ -1,5 +1,5 @@ # ----------------------------------------------------------------------------- -# $Id: Makefile,v 1.150 2001/03/27 16:32:46 rrt Exp $ +# $Id: Makefile,v 1.151 2001/04/03 12:55:01 rrt Exp $ TOP = .. include $(TOP)/mk/boilerplate.mk @@ -299,7 +299,7 @@ all :: ghc-inplace ghc-inplace : $(HS_PROG) @$(RM) $@ echo '#!/bin/sh' >>$@ - echo exec $(FPTOOLS_TOP_ABS)/ghc/compiler/$(HS_PROG) -B$(FPTOOLS_TOP_ABS) '"$$@"' >>$@ + echo exec $(FPTOOLS_TOP_ABS_UNIX)/ghc/compiler/$(HS_PROG) -B$(FPTOOLS_TOP_ABS) '"$$@"' >>$@ chmod 755 $@ CLEAN_FILES += ghc-inplace