ICU-9584 Changing %~f0 to %~dp0 for better readability.

X-SVN-Rev: 32634
This commit is contained in:
Yoshito Umaoka 2012-10-15 20:58:11 +00:00
parent ae801e7343
commit 459e90197a

View File

@ -20,12 +20,12 @@ exit /b 1
set ICU_OPATH=%PATH%
set ICU_ICUDIR="%~f0"\..\..\..
set ICU_ICUDIR="%~dp0"\..\..
if "%ICU_ARCH%" == "x64" (
set ICU_BINDIR=%~f0\..\..\..\bin64
set ICU_BINDIR=%~dp0\..\..\bin64
) else (
set ICU_BINDIR=%~f0\..\..\..\bin
set ICU_BINDIR=%~dp0\..\..\bin
)
set PATH=%ICU_BINDIR%;%PATH%