Linux: Ignore Debian-specific case when cross-compiling
When constructing settings for the target environment during cross compiling we should not check for /etc/debian_version on the host.
This commit is contained in:
parent
c95e523db8
commit
81bfebfe8c
|
@ -52,6 +52,6 @@ include(Platform/UnixPaths)
|
||||||
|
|
||||||
# Debian has lib64 paths only for compatibility so they should not be
|
# Debian has lib64 paths only for compatibility so they should not be
|
||||||
# searched.
|
# searched.
|
||||||
if(EXISTS "/etc/debian_version")
|
if(NOT CMAKE_CROSSCOMPILING AND EXISTS "/etc/debian_version")
|
||||||
set_property(GLOBAL PROPERTY FIND_LIBRARY_USE_LIB64_PATHS FALSE)
|
set_property(GLOBAL PROPERTY FIND_LIBRARY_USE_LIB64_PATHS FALSE)
|
||||||
endif()
|
endif()
|
||||||
|
|
Loading…
Reference in New Issue