浏览代码

BUG: make CMAKE_USE_CHRPATH a simple variable instead an option, since an
option is not scriptable and so breaks the toolchain test
or maybe option() should be made scriptable ?

Alex

Alexander Neundorf 18 年之前
父节点
当前提交
04136a558a
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Modules/CMakeFindBinUtils.cmake

+ 1 - 1
Modules/CMakeFindBinUtils.cmake

@@ -77,7 +77,7 @@ ENDIF(APPLE)
 
 IF(UNIX  AND NOT  APPLE  AND NOT  WIN32)
   # on ELF platforms there might be chrpath, which works similar to install_name_tool
-  OPTION(CMAKE_USE_CHRPATH "Enable this to use chrpath if available" OFF)
+  SET(CMAKE_USE_CHRPATH OFF CACHE BOOL "Enable this to use chrpath if available")
 
   FIND_PROGRAM(CMAKE_CHRPATH chrpath PATHS ${_CMAKE_TOOLCHAIN_LOCATION} NO_DEFAULT_PATH)
   FIND_PROGRAM(CMAKE_CHRPATH chrpath)