File tree 2 files changed +5
-4
lines changed
2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ Summary of bugs fixed for version 10.2.0 (tbd):
32
32
- ` findobj ` : Do not match empty tags with ` [] ` (bug #67048 ).
33
33
- Check for undefined output when indexing function output (bug #67111 ).
34
34
- ` perms ` : Fix buffer overflow and crash; minor code cleanup (bug #67115 ).
35
+ - ` mkoctfile ` : Support spaces in output path of linker step.
35
36
36
37
37
38
### GUI
Original file line number Diff line number Diff line change @@ -1396,10 +1396,10 @@ main (int argc, char **sys_argv)
1396
1396
1397
1397
std::string cmd
1398
1398
= (vars[" CXXLD" ] + ' ' + vars[" ALL_CXXFLAGS" ] + ' '
1399
- + pass_on_options + " -o " + octfile + ' ' + objfiles + ' '
1400
- + libfiles + ' ' + ldflags + ' ' + vars[ " DL_LDFLAGS " ] + ' '
1401
- + vars[" LDFLAGS " ] + ' ' + octave_libs + ' '
1402
- + vars[" OCT_LINK_OPTS" ]);
1399
+ + pass_on_options + " -o " + quote_path (octfile) + ' '
1400
+ + objfiles + ' ' + libfiles + ' ' + ldflags + ' '
1401
+ + vars[" DL_LDFLAGS " ] + ' ' + vars[ " LDFLAGS " ] + ' '
1402
+ + octave_libs + ' ' + vars[" OCT_LINK_OPTS" ]);
1403
1403
1404
1404
if (! creating_mex_file)
1405
1405
cmd += ' ' + vars[" OCT_LINK_DEPS" ];
You can’t perform that action at this time.
0 commit comments