build system: quote LD script search paths in target_linker_script

pull/7680/head
Ivan Grokhotkov 2020-10-05 23:20:33 +02:00
rodzic 71fc5fa478
commit 83a7ecc7c3
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -158,9 +158,9 @@ function(target_linker_script target deptype scriptfiles)
get_target_property(link_libraries "${target}" LINK_LIBRARIES)
endif()
list(FIND "${link_libraries}" "-L ${search_dir}" found_search_dir)
list(FIND "${link_libraries}" "-L \"${search_dir}\"" found_search_dir)
if(found_search_dir EQUAL "-1") # not already added as a search path
target_link_libraries("${target}" "${deptype}" "-L ${search_dir}")
target_link_libraries("${target}" "${deptype}" "-L \"${search_dir}\"")
endif()
target_link_libraries("${target}" "${deptype}" "-T ${scriptname}")