# HG changeset patch # User Markus Mützel # Date 1653582351 -7200 # Node ID 9504d582b2c626d3a6d8b17bf5e37140e701e8c3 # Parent 72786e15000147e794802cee791313f45d2a293b mkoctfile.m: Trim whitespace (newline) around system output. diff -r 72786e150001 -r 9504d582b2c6 scripts/miscellaneous/mkoctfile.m --- a/scripts/miscellaneous/mkoctfile.m Thu May 26 12:58:52 2022 +0200 +++ b/scripts/miscellaneous/mkoctfile.m Thu May 26 18:25:51 2022 +0200 @@ -226,7 +226,7 @@ [sts, out] = system (cmd); if (nargout > 0) - [output, status] = deal (out, sts); + [output, status] = deal (strtrim (out), sts); if (sts != 0) warning ("mkoctfile: building exited with failure status\n"); endif