On Friday 18 June 2004 03:56, Jonathan Worthington wrote: > # New Ticket Created by Jonathan Worthington > # Please include the string: [perl #30349] > # in the subject line of all future correspondence about this issue. > # <URL: http://rt.perl.org:80/rt3/Ticket/Display.html?id=30349 > > > > Hi, > > The attached one-line patch sorts out something that stopped ICU build > working on Win32 with Visual Studio 6.0. Sorry I missed it last time round > and that it's taken me so long to get back to it.
I replaced your xcopy icu\source\common icu\include command with this one: xcopy /E /I icu\source\common\unicode icu\include\unicode Only the unicode folder is needed, and my buildhost version of xcopy asks "is the target an file or directory", with stops the automatic build process until i respones to this question... (But this may be an problem with differences between my German and yours version of xcopy, i have no other version to verify this) At least for me this command works better than yours one. > Thanks, > > Jonathan Dennis -- Dennis Rieks [EMAIL PROTECTED]
Index: icu.pl =================================================================== RCS file: /cvs/public/parrot/config/gen/icu.pl,v retrieving revision 1.15 diff -u -w -b -r1.15 icu.pl --- icu.pl 19 Jun 2004 13:08:21 -0000 1.15 +++ icu.pl 22 Jun 2004 23:03:28 -0000 @@ -147,7 +147,7 @@ msdev icu\source\allinone\allinone.dsw /MAKE "stubdata - Win32 Debug" msdev icu\source\allinone\allinone.dsw /MAKE "common - Win32 Debug" msdev icu\source\allinone\allinone.dsw /MAKE "i18n - Win32 Debug" - xcopy icu\source\common icu\include + xcopy /E /I icu\source\common\unicode icu\include\unicode msdev icu\source\allinone\allinone.dsw /MAKE "ctestfw - Win32 Debug" msdev icu\source\allinone\allinone.dsw /MAKE "decmn - Win32 Debug" msdev icu\source\allinone\allinone.dsw /MAKE "gencmn - Win32 Debug"