Skip to content
Snippets Groups Projects
Commit 80160a67 authored by xantares's avatar xantares Committed by Marge Bot
Browse files

meson: dont use missing dumpbin path


Reviewed-by: default avatarDylan Baker <dylan@pnwbakers.com>
Cc: 21.2 mesa-stable
Closes #5142

Part-of: <mesa/mesa!12139>
parent a2b37e95
No related branches found
No related tags found
No related merge requests found
...@@ -2112,7 +2112,9 @@ pkg = import('pkgconfig') ...@@ -2112,7 +2112,9 @@ pkg = import('pkgconfig')
if host_machine.system() == 'windows' if host_machine.system() == 'windows'
prog_dumpbin = find_program('dumpbin', required : false) prog_dumpbin = find_program('dumpbin', required : false)
with_symbols_check = prog_dumpbin.found() and with_tests with_symbols_check = prog_dumpbin.found() and with_tests
symbols_check_args = ['--dumpbin', prog_dumpbin.path()] if with_symbols_check
symbols_check_args = ['--dumpbin', prog_dumpbin.path()]
endif
else else
prog_nm = find_program('nm') prog_nm = find_program('nm')
with_symbols_check = with_tests with_symbols_check = with_tests
......
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