From: simonmar Date: Thu, 28 Jun 2001 14:41:19 +0000 (+0000) Subject: [project @ 2001-06-28 14:41:19 by simonmar] X-Git-Tag: Approximately_9120_patches~1666 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=568f906d12f8039756d40bcb9edcc3a3276b0733;p=ghc-hetmet.git [project @ 2001-06-28 14:41:19 by simonmar] fix the ghc-inplace script w.r.t. the latest changes to SysTools.hs --- 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