Skip to content

Commit 2e3a708

Browse files
committed
Move intermediate i18n build directory to the correct place.
1 parent 7a9cb65 commit 2e3a708

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

build.xml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@
8080
<property name="tomcat.dist" value="${tomcat.output}/dist"/>
8181
<property name="tomcat.embed" value="${tomcat.output}/embed"/>
8282
<property name="tomcat.embed.sources" value="${tomcat.output}/embed-src-jars"/>
83+
<property name="tomcat.i18n" value="${tomcat.output}/i18n"/>
8384
<property name="tomcat.manifests" value="${tomcat.output}/manifests"/>
8485
<property name="tomcat.release" value="${tomcat.output}/release"/>
8586
<property name="tomcat.src.jars" value="${tomcat.output}/src-jars"/>
@@ -237,7 +238,7 @@
237238
<path id="tomcat.test.classpath">
238239
<pathelement location="${test.basedir}/webapps/examples/WEB-INF/classes"/>
239240
<pathelement location="${test.classes}"/>
240-
<pathelement location="${tomcat.build}/i18n"/>
241+
<pathelement location="${tomcat.i18n}"/>
241242
<pathelement location="${junit.jar}"/>
242243
<pathelement location="${hamcrest.jar}"/>
243244
<pathelement location="${easymock.jar}"/>
@@ -791,7 +792,6 @@
791792
<mkdir dir="${tomcat.build}"/>
792793
<mkdir dir="${tomcat.build}/bin"/>
793794
<mkdir dir="${tomcat.build}/conf"/>
794-
<mkdir dir="${tomcat.build}/i18n"/>
795795
<mkdir dir="${tomcat.build}/lib"/>
796796
<mkdir dir="${tomcat.build}/logs"/>
797797
<mkdir dir="${tomcat.build}/temp"/>
@@ -974,7 +974,7 @@
974974
after upgrading to Java 9+ as the minimum JRE and specifying the encoding
975975
when loading the ResourceBundles -->
976976
<native2ascii src="java" dest="${tomcat.classes}" includes="**/LocalStrings.properties,**/Messages*.properties" encoding="UTF-8"/>
977-
<native2ascii src="java" dest="${tomcat.build}/i18n" includes="**/LocalStrings_*.properties" encoding="UTF-8"/>
977+
<native2ascii src="java" dest="${tomcat.i18n}" includes="**/LocalStrings_*.properties" encoding="UTF-8"/>
978978

979979
</target>
980980

@@ -1162,7 +1162,7 @@
11621162
<!-- i18n JARs -->
11631163
<jar jarfile="${tomcat.build}/lib/tomcat-i18n-cs.jar"
11641164
manifest="${tomcat.manifests}/default.manifest">
1165-
<fileset dir="${tomcat.build}/i18n">
1165+
<fileset dir="${tomcat.i18n}">
11661166
<include name="**/LocalStrings_cs.properties" />
11671167
</fileset>
11681168
<zipfileset file="${tomcat.manifests}/default.notice"
@@ -1172,7 +1172,7 @@
11721172
</jar>
11731173
<jar jarfile="${tomcat.build}/lib/tomcat-i18n-de.jar"
11741174
manifest="${tomcat.manifests}/default.manifest">
1175-
<fileset dir="${tomcat.build}/i18n">
1175+
<fileset dir="${tomcat.i18n}">
11761176
<include name="**/LocalStrings_de.properties" />
11771177
</fileset>
11781178
<zipfileset file="${tomcat.manifests}/default.notice"
@@ -1182,7 +1182,7 @@
11821182
</jar>
11831183
<jar jarfile="${tomcat.build}/lib/tomcat-i18n-es.jar"
11841184
manifest="${tomcat.manifests}/default.manifest">
1185-
<fileset dir="${tomcat.build}/i18n">
1185+
<fileset dir="${tomcat.i18n}">
11861186
<include name="**/LocalStrings_es.properties" />
11871187
</fileset>
11881188
<zipfileset file="${tomcat.manifests}/default.notice"
@@ -1192,7 +1192,7 @@
11921192
</jar>
11931193
<jar jarfile="${tomcat.build}/lib/tomcat-i18n-fr.jar"
11941194
manifest="${tomcat.manifests}/default.manifest">
1195-
<fileset dir="${tomcat.build}/i18n">
1195+
<fileset dir="${tomcat.i18n}">
11961196
<include name="**/LocalStrings_fr.properties" />
11971197
</fileset>
11981198
<zipfileset file="${tomcat.manifests}/default.notice"
@@ -1202,7 +1202,7 @@
12021202
</jar>
12031203
<jar jarfile="${tomcat.build}/lib/tomcat-i18n-ja.jar"
12041204
manifest="${tomcat.manifests}/default.manifest">
1205-
<fileset dir="${tomcat.build}/i18n">
1205+
<fileset dir="${tomcat.i18n}">
12061206
<include name="**/LocalStrings_ja.properties" />
12071207
</fileset>
12081208
<zipfileset file="${tomcat.manifests}/default.notice"
@@ -1212,7 +1212,7 @@
12121212
</jar>
12131213
<jar jarfile="${tomcat.build}/lib/tomcat-i18n-ko.jar"
12141214
manifest="${tomcat.manifests}/default.manifest">
1215-
<fileset dir="${tomcat.build}/i18n">
1215+
<fileset dir="${tomcat.i18n}">
12161216
<include name="**/LocalStrings_ko.properties" />
12171217
</fileset>
12181218
<zipfileset file="${tomcat.manifests}/default.notice"
@@ -1222,7 +1222,7 @@
12221222
</jar>
12231223
<jar jarfile="${tomcat.build}/lib/tomcat-i18n-pt-BR.jar"
12241224
manifest="${tomcat.manifests}/default.manifest">
1225-
<fileset dir="${tomcat.build}/i18n">
1225+
<fileset dir="${tomcat.i18n}">
12261226
<include name="**/LocalStrings_pt_BR.properties" />
12271227
</fileset>
12281228
<zipfileset file="${tomcat.manifests}/default.notice"
@@ -1232,7 +1232,7 @@
12321232
</jar>
12331233
<jar jarfile="${tomcat.build}/lib/tomcat-i18n-ru.jar"
12341234
manifest="${tomcat.manifests}/default.manifest">
1235-
<fileset dir="${tomcat.build}/i18n">
1235+
<fileset dir="${tomcat.i18n}">
12361236
<include name="**/LocalStrings_ru.properties" />
12371237
</fileset>
12381238
<zipfileset file="${tomcat.manifests}/default.notice"
@@ -1242,7 +1242,7 @@
12421242
</jar>
12431243
<jar jarfile="${tomcat.build}/lib/tomcat-i18n-zh-CN.jar"
12441244
manifest="${tomcat.manifests}/default.manifest">
1245-
<fileset dir="${tomcat.build}/i18n">
1245+
<fileset dir="${tomcat.i18n}">
12461246
<include name="**/LocalStrings_zh_CN.properties" />
12471247
</fileset>
12481248
<zipfileset file="${tomcat.manifests}/default.notice"

0 commit comments

Comments
 (0)