matthiasblaesing commented on PR #6816:
URL: https://github.com/apache/netbeans/pull/6816#issuecomment-1847640223

   Thanks for fixing this. It currently fails to build from source because the 
ant call from the build script of the `gradle` module causes a wrong base 
directory to be used. This fixes that:
   
   ```diff
   # This patch file was generated by NetBeans IDE
   # It uses platform neutral UTF-8 encoding and \n newlines.
   --- a/extide/gradle/build.xml
   +++ b/extide/gradle/build.xml
   @@ -58,7 +58,7 @@
        </target>
    
        <target name="build-tooling-lib" 
depends="-download.release.files,-copy-gradle-wrapper,-uptodate-tooling" 
unless="tooling.uptodate">
   -        <ant antfile="${tooling}/build.xml" inheritAll="false" 
target="build" />
   +        <ant antfile="build.xml" dir="${tooling}" inheritAll="false" 
target="build" />
            <copy file="${tooling}/build/libs/${tooling}.jar" 
todir="build/tooling" overwrite="true"/>
            <copy file="${tooling}/src/main/resources/nb-tooling.gradle" 
todir="build/tooling" overwrite="true"/>
        </target>
   ```
   
   With that change netbeans builds again.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists

Reply via email to