diff options
author | Dan Gohman <gohman@apple.com> | 2009-03-25 00:09:05 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-03-25 00:09:05 +0000 |
commit | 1e7602a20e4eb6264bd3051faa3b765771ed3e5d (patch) | |
tree | b514a3f2885346c4e127a0c2ec69b28897b72220 /llvm/projects/sample | |
parent | 9e945380054b2e648efc65b737d5b2c66a361a3a (diff) | |
download | bcm5719-llvm-1e7602a20e4eb6264bd3051faa3b765771ed3e5d.tar.gz bcm5719-llvm-1e7602a20e4eb6264bd3051faa3b765771ed3e5d.zip |
LLVM's master Makefile.common is in LLVM_SRC_ROOT, not LLVM_OBJ_ROOT.
llvm-svn: 67658
Diffstat (limited to 'llvm/projects/sample')
-rw-r--r-- | llvm/projects/sample/Makefile.common.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/projects/sample/Makefile.common.in b/llvm/projects/sample/Makefile.common.in index 2b3025bd011..33bfcd67880 100644 --- a/llvm/projects/sample/Makefile.common.in +++ b/llvm/projects/sample/Makefile.common.in @@ -19,4 +19,4 @@ PROJ_OBJ_ROOT := $(subst //,/,@abs_top_objdir@) PROJ_INSTALL_ROOT := @prefix@ # Include LLVM's Master Makefile. -include $(LLVM_OBJ_ROOT)/Makefile.common +include $(LLVM_SRC_ROOT)/Makefile.common |