From 37cb78bd1d3aee4ccb78c5413d03b0fe62dae9d1 Mon Sep 17 00:00:00 2001 From: sof Date: Thu, 8 Nov 2001 18:53:44 +0000 Subject: [PATCH] [project @ 2001-11-08 18:53:44 by sof] ghc-inplace: single-quote -B option to avoid de-escaping those b-slashes --- ghc/compiler/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghc/compiler/Makefile b/ghc/compiler/Makefile index a03cfb6..a27f979 100644 --- a/ghc/compiler/Makefile +++ b/ghc/compiler/Makefile @@ -1,5 +1,5 @@ # ----------------------------------------------------------------------------- -# $Id: Makefile,v 1.197 2001/11/06 11:05:22 simonmar Exp $ +# $Id: Makefile,v 1.198 2001/11/08 18:53:44 sof Exp $ TOP = .. include $(TOP)/mk/boilerplate.mk @@ -392,7 +392,7 @@ 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) '"$$@"' >>$@ + echo exec $(FPTOOLS_TOP_ABS_UNIX)/ghc/compiler/$(HS_PROG) '-B$(FPTOOLS_TOP_ABS)' '"$$@"' >>$@ chmod 755 $@ CLEAN_FILES += ghc-inplace -- 1.7.10.4