Skip to content

Commit

Permalink
Fix a race condition in the makefile andrew reported
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29227 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
lattner committed Jul 20, 2006
1 parent ec3c411 commit 4446fcd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/VMCore/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ GENFILE:=$(PROJ_SRC_ROOT)/include/llvm/Intrinsics.gen
INTRINSICTD := $(PROJ_SRC_ROOT)/include/llvm/Intrinsics.td
INTRINSICTDS := $(wildcard $(PROJ_SRC_ROOT)/include/llvm/Intrinsics*.td)

$(ObjDir)/Intrinsics.gen.tmp: $(INTRINSICTDS) $(TBLGEN)
$(ObjDir)/Intrinsics.gen.tmp: $(ObjDir)/.dir $(INTRINSICTDS) $(TBLGEN)
$(Echo) Building Intrinsics.gen.tmp from Intrinsics.td
$(Verb) $(TableGen) $(INTRINSICTD) -o $@ -gen-intrinsic

Expand Down

0 comments on commit 4446fcd

Please sign in to comment.