diff options
author | Justin Bogner <mail@justinbogner.com> | 2013-11-15 18:07:57 +0000 |
---|---|---|
committer | Justin Bogner <mail@justinbogner.com> | 2013-11-15 18:07:57 +0000 |
commit | 2e8350b2b9f356d4372491010d49eb7f65e16676 (patch) | |
tree | 1b61293853a2291b1f9fdcb511494b4dff2aad76 /clang/runtime/libcxx | |
parent | d9f3381e51f4fb3e8974d77cd93acb456f209f65 (diff) | |
download | bcm5719-llvm-2e8350b2b9f356d4372491010d49eb7f65e16676.tar.gz bcm5719-llvm-2e8350b2b9f356d4372491010d49eb7f65e16676.zip |
libc++: Install headers in include/, rather than lib/
When using the configure build system, the libc++ headers were being
installed in lib/, whereas cmake installs them in include/. Since
include/ makes more sense for headers, we'll make both systems install
headers there.
llvm-svn: 194833
Diffstat (limited to 'clang/runtime/libcxx')
-rw-r--r-- | clang/runtime/libcxx/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/runtime/libcxx/Makefile b/clang/runtime/libcxx/Makefile index 42322dc8a3a..a7df868305c 100644 --- a/clang/runtime/libcxx/Makefile +++ b/clang/runtime/libcxx/Makefile @@ -15,7 +15,7 @@ CLANG_LEVEL := ../.. include $(CLANG_LEVEL)/Makefile -PROJ_libcxx_hdrs := $(DESTDIR)$(PROJ_prefix)/lib +PROJ_libcxx_hdrs := $(DESTDIR)$(PROJ_prefix)/include # Expect libcxx to be in llvm/projects/libcxx LIBCXX_SRC_ROOT := $(LLVM_SRC_ROOT)/projects/libcxx |