From: Ian Lynagh Date: Sun, 16 Jan 2011 15:09:01 +0000 (+0000) Subject: Fix cross-package dependency generation on Windows X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=437f89151dac9f70b833b7ab0d34bf170f8a3585 Fix cross-package dependency generation on Windows --- diff --git a/rules/build-dependencies.mk b/rules/build-dependencies.mk index 5cc91dc..f896b9f 100644 --- a/rules/build-dependencies.mk +++ b/rules/build-dependencies.mk @@ -40,7 +40,10 @@ ifneq "$$($1_$2_SLASH_MODS)" "" if test ! -d $$$$dir; then mkdir -p $$$$dir; fi \ done endif - mv $$@.tmp $$@ +# Some packages are from the bootstrapping compiler, so are not +# within the build tree. On Windows this causes a problem as they look +# like bad rules, due to the two colons, so we filter them out. + grep -v ' : [a-zA-Z]:/' $$@.tmp > $$@ # Some of the C files depend on the generated includes files. $$($1_$2_depfile_c_asm) : $$(includes_H_CONFIG) $$(includes_H_PLATFORM)