view src/mingw-texinfo-2-makeinfo-non-ASCII-perl.patch @ 5978:1569a1d140ae

octave-launch: Set number of OpenBLAS threads to number of cores (bug #61208). * installer-files/octave-launch.c (get_num_physical_cores): New function to get number of physical processor cores. (wmain): Set OPENBLAS_NUM_THREADS to number of physical processor cores for performance.
author Markus Mützel <markus.muetzel@gmx.de>
date Thu, 25 Nov 2021 18:37:52 +0100
parents 74e24bf4fa50
children
line wrap: on
line source

"perl" cannot run scripts in paths with non-ASCII characters on Windows.
To work around that, change to the directory containing the script first,
then call it without path.
FIXME: Could changing the directory have negative side effects for the
"makeinfo" script?

diff --git "a/util/makeinfo.bat" "b/util/makeinfo.bat"
index 5ae4286..6a51502 100644
--- "a/util/makeinfo.bat"	
+++ "b/util/makeinfo.bat"	
@@ -1,2 +1,4 @@
 @echo off
-perl "%~dpn0" %*
+%~d0
+cd "%~dp0"
+perl "%~n0" %*