mirror of
https://github.com/corda/corda.git
synced 2024-12-23 06:42:33 +00:00
bf98f64269
* Replace buggy classes in rt.jar with patched versions. * Apply Java bugfixes to MacOSX. * Initial support for patching Windows JRE. * Resign DemoBench DMG after the bugfixe source has been deleted. * Apply Java bugfixes for DemoBench on Windows.
40 lines
671 B
Batchfile
40 lines
671 B
Batchfile
@echo off
|
|
|
|
set DIRNAME=%~dp0
|
|
if "%DIRNAME%" == "" set DIRNAME=.
|
|
|
|
set SOURCEDIR=%DIRNAME%java
|
|
set BUILDDIR=%DIRNAME%build
|
|
|
|
if '%1' == '' (
|
|
@echo Need location of rt.jar
|
|
exit /b 1
|
|
)
|
|
if not "%~nx1" == "rt.jar" (
|
|
@echo File '%1' is not rt.jar
|
|
exit /b 1
|
|
)
|
|
if not exist %1 (
|
|
@echo %1 not found.
|
|
exit /b 1
|
|
)
|
|
|
|
if exist "%BUILDDIR%" rmdir /s /q "%BUILDDIR%"
|
|
mkdir "%BUILDDIR%"
|
|
|
|
for /r "%SOURCEDIR%" %%j in (*.java) do (
|
|
javac -O -d "%BUILDDIR%" "%%j"
|
|
if ERRORLEVEL 1 (
|
|
@echo "Failed to compile %%j"
|
|
exit /b 1
|
|
)
|
|
)
|
|
|
|
jar uvf %1 -C "%BUILDDIR%" .
|
|
if ERRORLEVEL 1 (
|
|
@echo "Failed to update %1"
|
|
exit /b 1
|
|
)
|
|
|
|
@echo "Completed"
|