Skip to content
Snippets Groups Projects
Commit 2046d1f0 authored by Pere Mato Vila's avatar Pere Mato Vila
Browse files

Fix for ROOT-9055. Avoid searching in the standard system environment variables (i.e. PATH)

parent c5abd3bf
No related branches found
No related tags found
No related merge requests found
......@@ -251,7 +251,7 @@ function(ROOT_GENERATE_DICTIONARY dictionary)
list(APPEND _list_of_header_dependencies ${fp})
else()
find_file(headerFile ${fp} HINTS ${localinclude} ${incdirs} NO_DEFAULT_PATH)
find_file(headerFile ${fp})
find_file(headerFile ${fp} NO_SYSTEM_ENVIRONMENT_PATH)
if(headerFile)
list(APPEND headerfiles ${headerFile})
list(APPEND _list_of_header_dependencies ${headerFile})
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment