You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@netbeans.apache.org by eb...@apache.org on 2021/05/23 21:19:05 UTC

[netbeans] branch master updated: [NETBEANS-5655] Fix build error caused by improper character set handling for arch.xml files.

This is an automated email from the ASF dual-hosted git repository.

ebakke pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans.git


The following commit(s) were added to refs/heads/master by this push:
     new 1cdb5bd  [NETBEANS-5655] Fix build error caused by improper character set handling for arch.xml files.
1cdb5bd is described below

commit 1cdb5bdc364f476a1b7bf3e124e0c7eddec28e8d
Author: Eirik Bakke <eb...@ultorg.com>
AuthorDate: Sat May 22 09:47:05 2021 -0400

    [NETBEANS-5655] Fix build error caused by improper character set handling for arch.xml files.
    
    After discussion in the PR, it was decided to leave the MS Word style 'smart quotes' that triggered the bug in java/java.source.base/arch.xml, to 'the file act as a canary for the issue'.
---
 nbbuild/javadoctools/build.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/nbbuild/javadoctools/build.xml b/nbbuild/javadoctools/build.xml
index e8fd960..fe678a7 100644
--- a/nbbuild/javadoctools/build.xml
+++ b/nbbuild/javadoctools/build.xml
@@ -125,7 +125,7 @@
         <echo file="${export.interfaces}/footer.gen">
             &lt;/alldata&gt;
         </echo>
-        <concat destfile="${netbeans.javadoc.dir}/alldatas.xml">
+        <concat destfile="${netbeans.javadoc.dir}/alldatas.xml" encoding="UTF-8" outputencoding="UTF-8">
             <fileset dir="${export.interfaces}" includes="header.gen"/>
             <fileset file="${netbeans.javadoc.dir}/allclasses.xml"/>
             <fileset file="${netbeans.javadoc.dir}/modules.xml"/>

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@netbeans.apache.org
For additional commands, e-mail: commits-help@netbeans.apache.org

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