From d346b2e9f580c872305a4619a28a9536f8ba8082 Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Sat, 16 May 2009 00:11:18 +0000 Subject: [PATCH] Remove some $(TOP)s that cause problems on Windows (as they contain ':') --- docs/users_guide/ghc.mk | 2 +- utils/ghc-cabal/ghc.mk | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/users_guide/ghc.mk b/docs/users_guide/ghc.mk index 25cd001..6d9b275 100644 --- a/docs/users_guide/ghc.mk +++ b/docs/users_guide/ghc.mk @@ -23,7 +23,7 @@ $(eval $(call docbook,docs/users_guide,users_guide)) # tree. This is a horrible hack, but I can't find a better way to do # it --SDM (2009-05-11) -build_ug_book = $(TOP)/docs/users_guide/ug-book.xml +build_ug_book = docs/users_guide/ug-book.xml src_ug_book = $(dir $(realpath $(dir $(build_ug_book))/ug-book.xml.in))ug-book.xml ifneq "$(build_ug_book)" "$(src_ug_book)" diff --git a/utils/ghc-cabal/ghc.mk b/utils/ghc-cabal/ghc.mk index 4ffab8b..b73d413 100644 --- a/utils/ghc-cabal/ghc.mk +++ b/utils/ghc-cabal/ghc.mk @@ -54,7 +54,7 @@ $(GHC_CABAL_DIR)_dist-dummy-ghc_MODULES = dummy-ghc $(GHC_CABAL_DIR)_dist-dummy-ghc_PROG = dummy-ghc$(exeext) # depend on config.mk, so we pick up the new version number if it changes. -$(GHC_CABAL_DIR)/dist-dummy-ghc/build/dummy-ghc.hs : $(GHC_CABAL_DIR)/ghc.mk $(MKDIRHIER) $(TOP)/mk/config.mk +$(GHC_CABAL_DIR)/dist-dummy-ghc/build/dummy-ghc.hs : $(GHC_CABAL_DIR)/ghc.mk $(MKDIRHIER) mk/config.mk $(MKDIRHIER) $(dir $@) echo "import System.Environment; import System.Cmd; import System.Exit" >$@ echo "main = do args <- getArgs; if args == [\"--numeric-version\"] then putStrLn \"$(ProjectVersion)\" else do e <- rawSystem \"$(GHC_STAGE0)\" args; exitWith e" >>$@ -- 1.7.10.4