Skip to content

Commit

Permalink
Build fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
abekornelis committed Oct 2, 2024
1 parent 7fdb303 commit 72b1660
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion BUILD.BAT
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ set /A z_NestLevel=%z_NestLevel%+1
rem ----- Lvl(%z_NestLevel%) Start %0 %1 %2 %3 %4 %5 %6 %7 %8 %9
pushd %~dps0
call bat\bldjar %z_TraceMode% || goto error
call bat\bldlib %z_TraceMode% || goto error
call bat\bldzstrmac %z_TraceMode% || goto error
call bat\bldlib %z_TraceMode% || goto error
call bat\bldcbllib %z_TraceMode% || goto error

call z390test\gradlew.bat -p z390test test || goto error
Expand Down
2 changes: 1 addition & 1 deletion bat/BLDJAR.BAT
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ cd jar
rem compile z390 java sources to class vm object code
if /I %1. EQU Debug. (set jvopt=-g) else (set jvopt=-g:none)
java -version
javac.exe %jvopt% *.java
javac.exe %jvopt% -source 1.8 -target 1.8 *.java
set z_ReturnCode=%ERRORLEVEL%
if %z_ReturnCode% NEQ 0 (echo %0 ERROR: Error compiling z390 java sources
goto return
Expand Down

0 comments on commit 72b1660

Please sign in to comment.