Re: [WiX-users] Failed to copy CustomAction log name

2009-05-26 Thread Alex Ivanoff
As I said, I am using long descriptive names for my custom actions. -Original Message- From: Rob Mensching [mailto:r...@wixtoolset.org] Sent: Tuesday, May 26, 2009 11:39 To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Failed to copy CustomAction log

Re: [WiX-users] Failed to copy CustomAction log name

2009-05-26 Thread Rob Mensching
Why isn't 31 enough? Alex Ivanoff wrote: > I use long descriptive names for my custom actions so I finally got this > error: > > "Failed to copy CustomAction log name." > > Turns out there is a 31 character log name limit in wcautil.cpp, line > 28: > > static char s_szCustomActionLogName[32]; > >

[WiX-users] Failed to copy CustomAction log name

2009-05-25 Thread Alex Ivanoff
I use long descriptive names for my custom actions so I finally got this error: "Failed to copy CustomAction log name." Turns out there is a 31 character log name limit in wcautil.cpp, line 28: static char s_szCustomActionLogName[32]; Why such a limitation? --