From c00120a25c064f01e272cd5d1972caa760809d94 Mon Sep 17 00:00:00 2001 From: rrt Date: Tue, 3 Apr 2001 12:55:01 +0000 Subject: [PATCH] [project @ 2001-04-03 12:55:01 by rrt] Use UNIX-style path in ghc-inplace shell script, even on a Windows system. --- ghc/compiler/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 1.7.10.4