mirror of https://git.tukaani.org/xz.git
CMake: Keep existing options in LIBS when adding -lrt
This makes no difference yet because -lrt is currently the only option that might be added to LIBS.
This commit is contained in:
parent
47aaa92516
commit
75ce4797d4
|
@ -287,7 +287,7 @@ if(NOT HAVE_CLOCK_GETTIME)
|
|||
# CMAKE_REQUIRED_LIBRARIES for further tests too.
|
||||
if(HAVE_CLOCK_GETTIME_LIBRT)
|
||||
link_libraries(rt)
|
||||
set(LIBS "-lrt") # For liblzma.pc
|
||||
set(LIBS "-lrt ${LIBS}") # For liblzma.pc
|
||||
else()
|
||||
list(REMOVE_AT CMAKE_REQUIRED_LIBRARIES 0)
|
||||
endif()
|
||||
|
|
Loading…
Reference in New Issue