From a912b5e76ae2bc3c6692a22f593287c66bc6f634 Mon Sep 17 00:00:00 2001 From: Markus Scherer Date: Wed, 27 Oct 1999 18:40:52 +0000 Subject: [PATCH] ICU-14 add a second, optional, parameter for Debug or Release versions of the tools X-SVN-Rev: 132 --- icu4c/source/tools/makedata.bat | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/icu4c/source/tools/makedata.bat b/icu4c/source/tools/makedata.bat index f6326f9c7e7..2cca858ff66 100755 --- a/icu4c/source/tools/makedata.bat +++ b/icu4c/source/tools/makedata.bat @@ -10,16 +10,17 @@ if "%ICU_DATA%"=="" set ICU_DATA=%1\icu\data\ rem toolversion: Debug or Release set toolversion=Release +if not "%2"=="" set toolversion=%2 -rem create conversion tables +echo create conversion tables cd makeconv call mkcnvfle %toolversion% %1 -rem create locale resource bundles +echo create locale resource bundles cd ..\genrb call genrb %toolversion% %1 -rem create binary collation tables +echo create binary collation tables cd ..\gencol %toolversion%\gencol @@ -32,5 +33,6 @@ echo call makedata with the absolute path to the icu directory echo for example, if the full path is d:\mytools\icu then call echo makedata d:\mytools echo the current directory must be the icu\source\tools directory with makedata.bat +echo a second, optional, parameter can be Debug or Release to specify the tools versions :end