1999-11-11 10:59:37 +00:00
|
|
|
@echo off
|
|
|
|
rem Zip up a patch file
|
|
|
|
|
2001-12-19 23:32:48 +00:00
|
|
|
if "%wxwin%" == "" goto usage
|
|
|
|
|
|
|
|
set src=%wxwin%
|
|
|
|
set dest=%src%\deliver
|
|
|
|
|
|
|
|
Rem Set this to the required wxWindows version
|
|
|
|
set wxversion=2.3.2
|
1999-11-11 10:59:37 +00:00
|
|
|
Rem Set this to the required patch version
|
2000-07-15 19:51:35 +00:00
|
|
|
set version=01
|
1999-11-11 10:59:37 +00:00
|
|
|
|
2001-12-19 23:32:48 +00:00
|
|
|
set patchname=wxWindows-%wxversion%-patch-%version%.zip
|
|
|
|
|
1999-11-11 10:59:37 +00:00
|
|
|
if "%src" == "" goto usage
|
|
|
|
if "%dest" == "" goto usage
|
2001-12-19 23:32:48 +00:00
|
|
|
echo About to create %dest%\%patchname%
|
1999-11-11 10:59:37 +00:00
|
|
|
echo From %src
|
|
|
|
echo To %dest
|
|
|
|
echo CTRL-C if this is not correct.
|
|
|
|
pause
|
|
|
|
|
2001-12-19 23:32:48 +00:00
|
|
|
erase /Q /E %dest%\wxWindows-*-patch*.zip
|
1999-11-11 10:59:37 +00:00
|
|
|
|
2001-12-19 23:32:48 +00:00
|
|
|
cd %src%
|
1999-11-11 10:59:37 +00:00
|
|
|
echo Zipping...
|
|
|
|
|
2001-12-19 23:32:48 +00:00
|
|
|
zip32 -@ %dest%\%patchname% < %src%\distrib\msw\patch.rsp
|
1999-11-11 10:59:37 +00:00
|
|
|
echo wxWindows patch archived.
|
|
|
|
|
|
|
|
cd %dest
|
|
|
|
|
|
|
|
goto end
|
|
|
|
|
|
|
|
:usage
|
2001-12-19 23:32:48 +00:00
|
|
|
echo wxWindows patch distribution.
|
1999-11-11 10:59:37 +00:00
|
|
|
echo.
|
|
|
|
echo Usage: zippatch
|
2001-12-19 23:32:48 +00:00
|
|
|
echo You must set WXWIN appropriately before calling this script.
|
1999-11-11 10:59:37 +00:00
|
|
|
|
|
|
|
:end
|