From dd5111d0c780a7a7a434a7dcb40621088c77f75c Mon Sep 17 00:00:00 2001 From: stolz Date: Fri, 23 May 2003 16:11:35 +0000 Subject: [PATCH] [project @ 2003-05-23 16:11:35 by stolz] Two more Solaris fixes: - ln -s -f doesn't really work (but doesn't matter) - 'echo -n' neither necessary nor portable (please merge) --- ghc/compiler/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghc/compiler/Makefile b/ghc/compiler/Makefile index 8cbd489..e0ddf89 100644 --- a/ghc/compiler/Makefile +++ b/ghc/compiler/Makefile @@ -109,7 +109,7 @@ ifeq "$(HOSTPLATFORM)" "i386-unknown-mingw32" done else for i in */*hi-boot*; do \ - $(LN_S) -f ../../$$i stage$(stage)/$$i; \ + $(LN_S) -f ../../$$i stage$(stage)/$$i || true ; \ done endif @@ -183,7 +183,7 @@ boot :: $(CONFIG_HS) $(CONFIG_HS) : $(FPTOOLS_TOP)/mk/config.mk Makefile @$(RM) -f $(CONFIG_HS) - @echo -n "Creating $(CONFIG_HS) ... " + @echo "Creating $(CONFIG_HS) ... " @echo "module Config where" >>$(CONFIG_HS) @echo "cProjectName = \"$(ProjectName)\"" >> $(CONFIG_HS) @echo "cProjectVersion = \"$(ProjectVersion)\"" >> $(CONFIG_HS) -- 1.7.10.4