From 568f906d12f8039756d40bcb9edcc3a3276b0733 Mon Sep 17 00:00:00 2001 From: simonmar Date: Thu, 28 Jun 2001 14:41:19 +0000 Subject: [PATCH] [project @ 2001-06-28 14:41:19 by simonmar] fix the ghc-inplace script w.r.t. the latest changes to SysTools.hs --- ghc/compiler/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ghc/compiler/Makefile b/ghc/compiler/Makefile index 0f16830..b9ac235 100644 --- a/ghc/compiler/Makefile +++ b/ghc/compiler/Makefile @@ -1,5 +1,5 @@ # ----------------------------------------------------------------------------- -# $Id: Makefile,v 1.166 2001/06/26 16:31:07 rrt Exp $ +# $Id: Makefile,v 1.167 2001/06/28 14:41:19 simonmar Exp $ TOP = .. include $(TOP)/mk/boilerplate.mk @@ -357,11 +357,11 @@ all :: ghc-inplace ghc-inplace : $(HS_PROG) @$(RM) $@ echo '#!/bin/sh' >>$@ - echo exec $(FPTOOLS_TOP_ABS_UNIX)/ghc/compiler/$(HS_PROG) -B$(FPTOOLS_TOP_ABS)/ghc/compiler '"$$@"' >>$@ + echo exec $(FPTOOLS_TOP_ABS_UNIX)/ghc/compiler/$(HS_PROG) -B$(FPTOOLS_TOP_ABS) '"$$@"' >>$@ chmod 755 $@ ifeq "$(TARGETPLATFORM) and $(MinimalUnixDeps)" "i386-unknown-mingw32 and YES" @$(RM) $@.bat - echo "@"$(subst /,\\,$(FPTOOLS_TOP_ABS)/ghc/compiler/$(HS_PROG)) "-B$(FPTOOLS_TOP_ABS)/ghc/compiler %*" >$@.bat + echo "@"$(subst /,\\,$(FPTOOLS_TOP_ABS)/ghc/compiler/$(HS_PROG)) "-B$(FPTOOLS_TOP_ABS) %*" >$@.bat chmod 755 $@.bat endif -- 1.7.10.4