Fix non-PIC build after 253959

CMAKE_EXE_LINKER_FLAGS is a string. Appending a flag using list(APPEND) introduces an extra
semicolon which breaks stuff. Change this to append the value in the same way that everyone else
seems to be doing.

llvm-svn: 253968
This commit is contained in:
Pavel Labath 2015-11-24 09:46:01 +00:00
parent 63a6ca9150
commit e3af02695d
1 changed files with 1 additions and 1 deletions

View File

@ -301,7 +301,7 @@ else()
set(ENABLE_PIC 0)
check_cxx_compiler_flag("-fno-pie" SUPPORTS_NO_PIE_FLAG)
if(SUPPORTS_NO_PIE_FLAG)
list(APPEND CMAKE_EXE_LINKER_FLAGS "-fno-pie")
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -fno-pie")
endif()
endif()