Skip to content
Snippets Groups Projects
Verified Commit 715aff89 authored by Sébastien Villemot's avatar Sébastien Villemot
Browse files

Octave 7 fixes bug related to generated files in +package folder

parent 418c290e
No related branches found
No related tags found
No related merge requests found
...@@ -181,7 +181,7 @@ write_ssr_routine(lhs, rhs, eqname, ipnames_, M_); ...@@ -181,7 +181,7 @@ write_ssr_routine(lhs, rhs, eqname, ipnames_, M_);
% Workaround for Octave bug https://savannah.gnu.org/bugs/?46282 % Workaround for Octave bug https://savannah.gnu.org/bugs/?46282
% Octave will randomly fail to read the ssr_* file generated in the +folder % Octave will randomly fail to read the ssr_* file generated in the +folder
if isoctave if isoctave && octave_ver_less_than('7')
path(path) path(path)
end end
......
...@@ -98,7 +98,7 @@ write_ssr_routine(lhs, rhs, eqname, ipnames_, M_, pacmodl); ...@@ -98,7 +98,7 @@ write_ssr_routine(lhs, rhs, eqname, ipnames_, M_, pacmodl);
% Workaround for Octave bug https://savannah.gnu.org/bugs/?46282 % Workaround for Octave bug https://savannah.gnu.org/bugs/?46282
% Octave will randomly fail to read the ssr_* file generated in the +folder % Octave will randomly fail to read the ssr_* file generated in the +folder
if isoctave if isoctave && octave_ver_less_than('7')
path(path) path(path)
end end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment