[llvm-commits] [llvm] r149642 - /llvm/trunk/Makefile.rules

Daniel Dunbar daniel at zuster.org
Thu Feb 2 15:27:32 PST 2012


Author: ddunbar
Date: Thu Feb  2 17:27:32 2012
New Revision: 149642

URL: http://llvm.org/viewvc/llvm-project?rev=149642&view=rev
Log:
build/Make: Add missing dependency, LLVMBuild makefile fragment implicitly depends on Makefile.config.

Modified:
    llvm/trunk/Makefile.rules

Modified: llvm/trunk/Makefile.rules
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/Makefile.rules?rev=149642&r1=149641&r2=149642&view=diff
==============================================================================
--- llvm/trunk/Makefile.rules (original)
+++ llvm/trunk/Makefile.rules Thu Feb  2 17:27:32 2012
@@ -94,7 +94,8 @@
 #
 # We include a dependency on this Makefile to ensure that changes to the
 # generation command get picked up.
-$(LLVMBuildMakeFrag): $(PROJ_SRC_ROOT)/Makefile.rules
+$(LLVMBuildMakeFrag): $(PROJ_SRC_ROOT)/Makefile.rules \
+		      $(PROJ_OBJ_ROOT)/Makefile.config
 	$(Echo) Constructing LLVMBuild project information.
 	$(Verb) $(LLVMBuildTool) \
 	  --native-target "$(TARGET_NATIVE_ARCH)" \





More information about the llvm-commits mailing list