]> git.saurik.com Git - wxWidgets.git/blame - distrib/msw/zippatch.bat
1. fixed wxGTK notebook which was completely broken by the merge
[wxWidgets.git] / distrib / msw / zippatch.bat
CommitLineData
1c6fb09f
JS
1@echo off
2rem Zip up a patch file
f6bcfd97 3set src=d:\wx2\wxWindows
6b8b0e7c 4set dest=%wxwin\deliver
1c6fb09f
JS
5
6Rem Set this to the required patch version
f6bcfd97 7set version=01
1c6fb09f
JS
8
9if "%src" == "" goto usage
10if "%dest" == "" goto usage
11echo About to archive patch%version%.zip
12echo From %src
13echo To %dest
14if "%wise" == "1" echo with WISE setup creation.
15echo CTRL-C if this is not correct.
16pause
17
18erase %dest\patch*.zip
19
20cd %src
21echo Zipping...
22
6b8b0e7c 23zip32 -@ %dest\patch%version%.zip < %wxwin\distrib\msw\patch.rsp
1c6fb09f
JS
24echo wxWindows patch archived.
25
26cd %dest
27
28goto end
29
30:usage
31echo DOS wxWindows patch distribution.
32echo.
33echo Usage: zippatch
34
35:end