Skip to content

Commit

Permalink
Prevent certificate check on WGET download in autobuild to prevent pr…
Browse files Browse the repository at this point in the history
…oblems occuring i.e. when building on Windows XP

Minor correction in patch.cmd (not relevant for build process)
  • Loading branch information
leecher1337 committed Apr 24, 2022
1 parent e1784be commit 5e2880a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion autobuild/autobuild-ccpu-chk.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ if not exist %PREREQ%\%1 (
rem -- bitsadmin fails for some urls and thus is the least preferred solution
rem
if exist %ABPATH%\wget.exe (
%ABPATH%\wget %2 -O %PREREQ%\%1
%ABPATH%\wget --no-check-certificate %2 -O %PREREQ%\%1
) else (
if exist %ABPATH%\dwnl.exe (
%ABPATH%\dwnl %2 %PREREQ%\%1
Expand Down
3 changes: 1 addition & 2 deletions ntvdmpatch/minnt/patch.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,8 @@ move %BASEPATH%\..\..\minnt\public\sdk\inc\commctrl.h %BASEPATH%\..\..\minnt\pub
rem Prepend include of sal.h to new header file from SDK
echo #include ^<sal.h^> >%BASEPATH%\..\..\minnt\public\sdk\inc\commctrl.h
type %BASEPATH%\..\..\minnt\public\sdk\inc\commctrl.h_ >>%BASEPATH%\..\..\minnt\public\sdk\inc\commctrl.h
del /y %BASEPATH%\..\..\minnt\public\sdk\inc\commctrl.h_
del %BASEPATH%\..\..\minnt\public\sdk\inc\commctrl.h_

move
rem ... But in makefile, it's with _ ..?
rem ren %BASEPATH%\mvdm\bin86\jpn\_disp.sys $disp.sys
rem ren %BASEPATH%\mvdm\bin86\jpn\_ias.sys $ias.sys
Expand Down

0 comments on commit 5e2880a

Please sign in to comment.