aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-11-30 09:22:42 +0000
committerChris Lattner <sabre@nondot.org>2003-11-30 09:22:42 +0000
commit9ca419e577e2dc64c614d30f8db2e94c9c5c4ed0 (patch)
tree969e360aa60324d49cf9fbdd8e92a463ddf78f2c
parente1cc79f1cfb2ac739dc2fb77ee922dbc94e1a12e (diff)
add missing dependency
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10271 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--runtime/GCCLibraries/crtend/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/GCCLibraries/crtend/Makefile b/runtime/GCCLibraries/crtend/Makefile
index 0984760cba..e4e9b37699 100644
--- a/runtime/GCCLibraries/crtend/Makefile
+++ b/runtime/GCCLibraries/crtend/Makefile
@@ -43,7 +43,7 @@ ComponentLibs := $(Components:%=$(BUILD_OBJ_DIR)/BytecodeObj/comp_%.bc)
# We build libcrtend.a from the four components described in the README.
-$(CRTEND_A) : $(ComponentLibs)
+$(CRTEND_A) : $(ComponentLibs) $(DESTLIBBYTECODE)/.dir
@echo Building final libcrtend.a file from components
$(VERB) $(AR) $@ $(ComponentLibs)