> -----Original Message----- > From: Martin Sebor [mailto:[EMAIL PROTECTED] > Sent: Tuesday, January 16, 2007 8:27 PM > To: [email protected] > Subject: Windows locale failures > > It looks like the recent changes to the Windows side of the > build and test infrastructure might be causing all locales to > fail to build (see the error below). Farid, can you see > what's going on?
Hmm, I see that Pre-Build command line is broken. Should be: @echo off if exist "%builddir%\lib\stdlib12d.dll" if not exist "%builddir%\12d\bin\stdlib12d.dll" copy /Y "%builddir%\lib\stdlib12d.dll" "%builddir%\12d\bin\stdlib12d.dll" echo cscript /nologo "%srcdir%\etc\config\windows\run_locale_utils.wsf" /s /b:"%builddir%\12d\bin" > "%builddir%\12d\bin\sanity_test.bat" echo cscript /nologo "%srcdir%\etc\config\windows\run_locale_utils.wsf" /f /b:"%builddir%\12d\bin" /i:"%srcdir%\etc\nls" /l:af_ZA.ISO-8859-1 > "%builddir%\12d\bin\af_ZA.ISO-8859-1.bat" and so on by one line per locale But the present command line is: @echo off i12d\bin\zh_CN.GBK.bat" echo cscript /nologo "%srcdir%\etc\config\windows\run_locale_utils.wsf" /f /b:"%builddir%\12d\bin" /i:"%srcdir%\etc\nls" /l:zh_HK.BIG5-HKSCS > "%builddir%\12d\bin\zh_HK.BIG5-HKSCS.bat" ... Seems to first 'i' from line "i12d\bin\zh_CN.GBK.bat"" is cutted line "if exist ...", but I have no idea how this can happened. Farid.
