From: stolz Date: Fri, 23 May 2003 16:11:35 +0000 (+0000) Subject: [project @ 2003-05-23 16:11:35 by stolz] X-Git-Tag: Approx_11550_changesets_converted~866 X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=dd5111d0c780a7a7a434a7dcb40621088c77f75c [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) --- 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)