[QFJ-118] javac.debug proprety is not used during java compilation Created: 23/Dec/06  Updated: 10/Jan/07  Resolved: 10/Jan/07

Status: Closed
Project: QuickFIX/J
Component/s: Build
Affects Version/s: 1.0.4
Fix Version/s: 1.1.0

Type: Bug Priority: Minor
Reporter: Toli Kuznets Assignee: Steve Bate
Resolution: Fixed Votes: 0
Labels: None

Attachments: Text File buildPatch.patch    

 Description   

Seems that the flag on whether or not to compile with debugging turned on is set incorrectly in core/build.xml file

The current value for the javac.debug property is "yes", but it should actually be set to "true" according to ant javac task:

  • <property name="javac.debug" value="yes" />
    + <property name="javac.debug" value="true" />

Subsequently, when it's used later in the do_compile macro it's referenced incorrectly:

  • <javac destdir="@ {output}" debug="@{javac.debug}" memoryMaximumSize="128m" fork="yes">
    + <javac destdir="@{output}

    " debug="$

    {javac.debug}

    " memoryMaximumSize="128m" fork="yes">

Since it's not passed as parameter, shouldn't the property just be accessed directly?

patch file attached.



 Comments   
Comment by Toli Kuznets [ 23/Dec/06 ]

patch file

Generated at Sat Nov 23 10:32:35 UTC 2024 using JIRA 7.5.2#75007-sha1:9f5725bb824792b3230a5d8716f0c13e296a3cae.