diff options
author | Med Ismail Bennani <medismail.bennani@gmail.com> | 2021-12-10 17:30:16 -0800 |
---|---|---|
committer | Med Ismail Bennani <medismail.bennani@gmail.com> | 2021-12-10 17:33:54 -0800 |
commit | 30fc88bf1dc15a72e2d9809d28019d386b7a7cc0 (patch) | |
tree | e70db1ab5034bb5cf369d8ebb15ce20841e0669f /lldb | |
parent | 654aa3ad92f2e496eb082cf07b3de3471ae58a92 (diff) | |
download | llvm-30fc88bf1dc15a72e2d9809d28019d386b7a7cc0.zip llvm-30fc88bf1dc15a72e2d9809d28019d386b7a7cc0.tar.gz llvm-30fc88bf1dc15a72e2d9809d28019d386b7a7cc0.tar.bz2 |
Revert "Revert "Revert "Use `GNUInstallDirs` to support custom installation dirs. -- LLVM"""
This reverts commit 492de35df443d5f31480173d5f1274c7835cd3d8.
I tried to apply John's changes in 8d897ec91528 that were expected to
fix his patch but that didn't work unfortunately.
Reverting this again to fix the macOS bots and leave him more time to
investigate the issue.
Diffstat (limited to 'lldb')
-rw-r--r-- | lldb/cmake/modules/FindLibEdit.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/cmake/modules/FindLibEdit.cmake b/lldb/cmake/modules/FindLibEdit.cmake index 8b00d34..b4f0cb3 100644 --- a/lldb/cmake/modules/FindLibEdit.cmake +++ b/lldb/cmake/modules/FindLibEdit.cmake @@ -25,14 +25,14 @@ else() HINTS ${PC_LIBEDIT_INCLUDEDIR} ${PC_LIBEDIT_INCLUDE_DIRS} - "${CMAKE_INSTALL_FULL_INCLUDEDIR}") + ${CMAKE_INSTALL_FULL_INCLUDEDIR}) find_library(LibEdit_LIBRARIES NAMES edit libedit HINTS ${PC_LIBEDIT_LIBDIR} ${PC_LIBEDIT_LIBRARY_DIRS} - "${CMAKE_INSTALL_FULL_LIBDIR}") + ${CMAKE_INSTALL_FULL_LIBDIR}) if(LibEdit_INCLUDE_DIRS AND EXISTS "${LibEdit_INCLUDE_DIRS}/histedit.h") file(STRINGS "${LibEdit_INCLUDE_DIRS}/histedit.h" |