Skip to content

Commit b526376

Browse files
committed
CMake: another fix for case-sensitive variables
1 parent 913cbe1 commit b526376

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ macro(LIST_CONTAINS var value)
4747
endforeach(value2)
4848
endmacro(LIST_CONTAINS)
4949

50-
if(NOT LIB_install_DIR)
51-
set(LIB_install_DIR "lib")
50+
if(NOT LIB_INSTALL_DIR)
51+
set(LIB_INSTALL_DIR "lib")
5252
endif()
5353

5454
set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake_modules")

0 commit comments

Comments
 (0)