From 437f89151dac9f70b833b7ab0d34bf170f8a3585 Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Sun, 16 Jan 2011 15:09:01 +0000 Subject: [PATCH] Fix cross-package dependency generation on Windows --- rules/build-dependencies.mk | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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) -- 1.7.10.4