]> granicus.if.org Git - python/commitdiff
bpo-35374: Avoid trailing space in hhc file name if found on PATH. (GH-10849)
authorchrullrich <chris@chrullrich.net>
Tue, 8 Jan 2019 02:57:29 +0000 (03:57 +0100)
committerSteve Dower <steve.dower@microsoft.com>
Tue, 8 Jan 2019 02:57:29 +0000 (18:57 -0800)
Doc/make.bat

index 461c35c5a1145bea86b22897954f74a38a666d84..e6604956ea916b9ae6cf37d5db725e103523bad1 100644 (file)
@@ -41,7 +41,7 @@ if exist "%HTMLHELP%" goto :skiphhcsearch
 
 rem Search for HHC in likely places
 set HTMLHELP=
-where hhc /q && set HTMLHELP=hhc && goto :skiphhcsearch
+where hhc /q && set "HTMLHELP=hhc" && goto :skiphhcsearch
 where /R ..\externals hhc > "%TEMP%\hhc.loc" 2> nul && set /P HTMLHELP= < "%TEMP%\hhc.loc" & del "%TEMP%\hhc.loc"
 if not exist "%HTMLHELP%" where /R "%ProgramFiles(x86)%" hhc > "%TEMP%\hhc.loc" 2> nul && set /P HTMLHELP= < "%TEMP%\hhc.loc" & del "%TEMP%\hhc.loc"
 if not exist "%HTMLHELP%" where /R "%ProgramFiles%" hhc > "%TEMP%\hhc.loc" 2> nul && set /P HTMLHELP= < "%TEMP%\hhc.loc" & del "%TEMP%\hhc.loc"