From: sof Date: Sat, 21 Jul 2001 19:08:44 +0000 (+0000) Subject: [project @ 2001-07-21 19:08:44 by sof] X-Git-Tag: Approximately_9120_patches~1491 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=f6007733dc8e9a3f58c36e2bab97d2858d2b569a;p=ghc-hetmet.git [project @ 2001-07-21 19:08:44 by sof] ghc-inplace.bat: COMMAND.COM doesn't support %*, fall back to using %[1-9] --- diff --git a/ghc/compiler/Makefile b/ghc/compiler/Makefile index 74029fe..79409d2 100644 --- a/ghc/compiler/Makefile +++ b/ghc/compiler/Makefile @@ -1,5 +1,5 @@ # ----------------------------------------------------------------------------- -# $Id: Makefile,v 1.176 2001/07/17 17:27:20 sof Exp $ +# $Id: Makefile,v 1.177 2001/07/21 19:08:44 sof Exp $ TOP = .. include $(TOP)/mk/boilerplate.mk @@ -374,7 +374,7 @@ ghc-inplace : $(HS_PROG) chmod 755 $@ ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32" @$(RM) $@.bat - echo "@"$(subst /,\\,$(FPTOOLS_TOP_ABS)/ghc/compiler/$(HS_PROG)) "-B$(FPTOOLS_TOP_ABS) %*" >$@.bat + echo "@"$(subst /,\\,$(FPTOOLS_TOP_ABS)/ghc/compiler/$(HS_PROG)) "-B$(FPTOOLS_TOP_ABS) %1 %2 %3 %4 %5 %6 %7 %8 %9" >$@.bat chmod 755 $@.bat endif