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
This commit is contained in:
Alexander Neundorf 2007-12-19 03:55:11 -05:00
parent 42da2be0b1
commit 04136a558a
1 changed files with 1 additions and 1 deletions

View File

@ -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)