[project @ 2003-05-23 16:11:35 by stolz]
authorstolz <unknown>
Fri, 23 May 2003 16:11:35 +0000 (16:11 +0000)
committerstolz <unknown>
Fri, 23 May 2003 16:11:35 +0000 (16:11 +0000)
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

index 8cbd489..e0ddf89 100644 (file)
@@ -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)