Skip to content
Snippets Groups Projects
Verified Commit 7b5db9e6 authored by Stéphane Adjemian's avatar Stéphane Adjemian Committed by Sébastien Villemot
Browse files

Fix for which command deprecation in debian Bookworm/unstable.

(cherry picked from commit f96ed7ad)
parent be118de7
Branches
No related tags found
No related merge requests found
Pipeline #5934 passed
......@@ -47,7 +47,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.
Please register or to comment