We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a627fd commit 53be4eeCopy full SHA for 53be4ee
src/sage/meson.build
@@ -64,8 +64,12 @@ nauty_progs = [
64
'genktreeg',
65
'genposetg',
66
]
67
+extra_bin_paths = []
68
+if get_option('SAGE_LOCAL') != ''
69
+ extra_bin_paths += [join_paths(get_option('SAGE_LOCAL'), 'bin')]
70
+endif
71
foreach prog : nauty_progs
- nauty_check = find_program(prog, required: false)
72
+ nauty_check = find_program(prog, dirs: extra_bin_paths, required: false)
73
if nauty_check.found()
74
nauty_bins_prefix = nauty_check.full_path().replace(prog, '')
75
endif
0 commit comments