From ced5efe97ad439d1a453d2152f53b732455606cd Mon Sep 17 00:00:00 2001 From: Markus Scherer Date: Wed, 27 Oct 1999 18:40:52 +0000 Subject: [PATCH] add a second, optional, parameter for Debug or Release versions of the tools X-Trac-URL: https://ssl.icu-project.org/trac/ticket/14 git-svn-id: http://source.icu-project.org/repos/icu/icu/trunk@132 0a8b766c-62c9-45f9-954d-7f2943c9ead0 --- source/tools/makedata.bat | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/source/tools/makedata.bat b/source/tools/makedata.bat index f6326f9c7e7..2cca858ff66 100755 --- a/source/tools/makedata.bat +++ b/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