Skip to content
Snippets Groups Projects
Verified Commit f96ed7ad authored by Stéphane Adjemian's avatar Stéphane Adjemian
Browse files

Fix for which command deprecation in debian Bookworm/unstable.

parent def407cb
No related branches found
No related tags found
No related merge requests found
......@@ -41,7 +41,7 @@ elseif isunix()
x13_binary = sprintf('%s%s%s%s', x13_binary, '32', filesep(), 'x13as');
end
if ~exist(x13_binary, 'file')
[status, x13_binary] = system('which x13as');
[status, x13_binary] = system('command -v x13as');
if ~status
x13_binary = deblank(x13_binary);
end
......
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