diff options
author | Daniel Dunbar <daniel@zuster.org> | 2010-01-19 21:28:04 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2010-01-19 21:28:04 +0000 |
commit | 46bbbdd0111c386c2341919a62c5742f2519efa6 (patch) | |
tree | 85584f233eb0f5b667d2f970ec2798f5252e19ee | |
parent | 253521bacfc70dcc8f8205f8b1192816458beb34 (diff) |
Don't try to build/install/clean compiler-rt stuff if it isn't in the projects directory.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@93914 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Runtime/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Runtime/Makefile b/lib/Runtime/Makefile index a8a6413890..020188e869 100644 --- a/lib/Runtime/Makefile +++ b/lib/Runtime/Makefile @@ -39,8 +39,6 @@ RuntimeDirs += darwin RuntimeLibrary.darwin.Configs = x86_10.4 armv6 endif -endif - # Rule to build the compiler-rt libraries we need. # # We build all the libraries in a single shot to avoid recursive make as much as @@ -97,3 +95,5 @@ $(foreach lib,$(RuntimeDirs), $(eval $(call RuntimeLibraryTemplate,$(lib)))) all-local:: $(RuntimeDirs:%=RuntimeLibrary.%) install-local:: $(RuntimeDirs:%=RuntimeLibraryInstall.%) clean-local:: CleanRuntimeLibraries + +endif |