[Lldb-commits] [PATCH] D14089: Avoid using `..` in paths for include dirs.

Stephane Sezer via lldb-commits lldb-commits at lists.llvm.org
Wed Oct 28 10:37:07 PDT 2015


This revision was automatically updated to reflect the committed changes.
Closed by commit rL251530: Avoid using `..` in paths for include dirs. (authored by sas).

Changed prior to commit:
  http://reviews.llvm.org/D14089?vs=38454&id=38670#toc

Repository:
  rL LLVM

http://reviews.llvm.org/D14089

Files:
  lldb/trunk/cmake/modules/LLDBConfig.cmake

Index: lldb/trunk/cmake/modules/LLDBConfig.cmake
===================================================================
--- lldb/trunk/cmake/modules/LLDBConfig.cmake
+++ lldb/trunk/cmake/modules/LLDBConfig.cmake
@@ -194,7 +194,7 @@
   add_definitions( -DLLDB_DISABLE_PYTHON )
 endif()
 
-include_directories(../clang/include)
+include_directories(${CMAKE_SOURCE_DIR}/tools/clang/include)
 include_directories("${CMAKE_CURRENT_BINARY_DIR}/../clang/include")
 
 # Disable GCC warnings


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D14089.38670.patch
Type: text/x-patch
Size: 480 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20151028/7c570e69/attachment.bin>


More information about the lldb-commits mailing list