summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Bogner <mail@justinbogner.com>2013-11-15 18:07:57 +0000
committerJustin Bogner <mail@justinbogner.com>2013-11-15 18:07:57 +0000
commit3604841af31cbd337ffab781a7fe81a68a1455f0 (patch)
tree9b9e64bc94c6f2b2f6f32e75c57f868a74b89885
parent4417498c9f31829c1c2e0b0a99db13420e988746 (diff)
downloadclang-3604841af31cbd337ffab781a7fe81a68a1455f0.tar.gz
clang-3604841af31cbd337ffab781a7fe81a68a1455f0.tar.bz2
clang-3604841af31cbd337ffab781a7fe81a68a1455f0.tar.xz
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. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@194833 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--runtime/libcxx/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/libcxx/Makefile b/runtime/libcxx/Makefile
index 42322dc8a3..a7df868305 100644
--- a/runtime/libcxx/Makefile
+++ b/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