about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2013-05-21 16:34:41 -0700
committerAlex Crichton <alex@alexcrichton.com>2013-08-04 10:58:22 -0700
commit9ae0658fd0bf7552cc9a302d00fa9f94c7fc44de (patch)
treec4a60d96e4edb50b32b8ff34e4c864f3b6d5e2c2
parent22f9ce4df682cd4dd1203e5ae3d8c95f5140e209 (diff)
downloadrust-9ae0658fd0bf7552cc9a302d00fa9f94c7fc44de.tar.gz
rust-9ae0658fd0bf7552cc9a302d00fa9f94c7fc44de.zip
Try to fix a periodic windows build failure due to broken rwildcard macro
-rw-r--r--mk/llvm.mk4
1 files changed, 3 insertions, 1 deletions
diff --git a/mk/llvm.mk b/mk/llvm.mk
index 77b6b4d96f3..12ccc55d4fa 100644
--- a/mk/llvm.mk
+++ b/mk/llvm.mk
@@ -14,7 +14,9 @@ LLVM_DEPS := $(S)/.gitmodules
 else
 
 # This is just a rough approximation of LLVM deps
-LLVM_DEPS=$(call rwildcard,$(CFG_LLVM_SRC_DIR),*cpp *hpp)
+LLVM_DEPS_SRC=$(call rwildcard,$(CFG_LLVM_SRC_DIR)/lib,*cpp *hpp)
+LLVM_DEPS_INC=$(call rwildcard,$(CFG_LLVM_SRC_DIR)/include,*cpp *hpp)
+LLVM_DEPS=$(LLVM_DEPS_SRC) $(LLVM_DEPS_INC)
 endif
 
 define DEF_LLVM_RULES