Skip to content
Snippets Groups Projects
Commit 0d467145 authored by Guillaume Pasero's avatar Guillaume Pasero
Browse files

PKG: warning when non-rpath depencencies are found on macosx

parent 2eda9cf6
No related branches found
No related tags found
No related merge requests found
...@@ -803,6 +803,10 @@ function(func_process_deps infile) ...@@ -803,6 +803,10 @@ function(func_process_deps infile)
is_system_dll(is_system "${infile}") is_system_dll(is_system "${infile}")
if(EXISTS ${infile} AND NOT is_system) if(EXISTS ${infile} AND NOT is_system)
if(APPLE)
# We want all non-system deps to start with rpath
message(WARNING "Found dependency without relative path : ${infile}")
endif()
get_filename_component(infile ${infile} NAME) get_filename_component(infile ${infile} NAME)
endif() endif()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment