On Jun 24, 2006, at 1:30 PM, Arun Kumar wrote:
> You were right about the CR LF being the problem. Though the
> problem seems to be something in the script that generates the
> *metarc.rc file from the corresponding xml file in the source. The
> problem is an extra line break that is inserted into the *metarc.rc
> file (I mean files like bugplug_metarc.rc).
> If you open the file you will see the closing '",' appears on a new
> line instead of after the corresponding closing xml tag. I have
> tried to look through the code to see which script generates these
> files but wasnt able to find it.
> I used a script to fix the problem, but obviously the solution is
> to fix the original script.
Peter's patch will fix this. In the meantime you can try applying the
following diff manually (which I extracted from his patch):
Index: mk/jam/win32.jam
===================================================================
--- mk/jam/win32.jam (revision 24601)
+++ mk/jam/win32.jam (working copy)
@@ -141,7 +141,7 @@
{
__EOF__
- cat $(>) | $(SED) "s:\":\"\":g" | $(SED) "s:\(.*\): \"\1\",:g"
>> $(<)
+ cat $(>) | $(SED) "s:\r::g" | $(SED) "s:\":\"\":g" | $(SED) "s:\
(.*\): \"\1\",:g" >> $(<)
cat >> $(<) << __EOF__
"\0"
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Crystal-main mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/crystal-main
Unsubscribe: mailto:[EMAIL PROTECTED]