ICU-20439 Updating cldr-icu-readme.txt to reflect changes in eac8f4b.

This commit is contained in:
Shane F. Carr 2019-03-13 01:02:24 -07:00
parent 8943f89a84
commit acca4e15a2
2 changed files with 14 additions and 2 deletions

View File

@ -317,7 +317,9 @@ $(OUTDIR)/icu4j/icutzdata.jar: generate-data
# - extract all data items # - extract all data items
# - package them into the .jar file # - package them into the .jar file
# TODO(ICU-20466): Move this to Python # TODO(ICU-20466): Move this to Python
$(OUTDIR)/icu4j/icudata.jar: generate-data # NOTE: If you get the error "No rule to make target 'out/build/icudt64l/uprops.icu'",
# you need to reconfigure with unicore data. See icu4j-readme.txt
$(OUTDIR)/icu4j/icudata.jar: generate-data | $(OUT_DIR)/uprops.icu
$(JAR) cf $(OUTDIR)/icu4j/icudata.jar -C $(OUTDIR)/icu4j $(ICU4J_DATA_DIRNAME)/ $(JAR) cf $(OUTDIR)/icu4j/icudata.jar -C $(OUTDIR)/icu4j $(ICU4J_DATA_DIRNAME)/
ICU4J_DATA=$(OUTDIR)/icu4j/icudata.jar ICU4J_DATA=$(OUTDIR)/icu4j/icudata.jar

View File

@ -241,11 +241,21 @@ cd $ICU4J_ROOT
ant all 2>&1 | tee /tmp/icu4j-oldData-antAll.txt ant all 2>&1 | tee /tmp/icu4j-oldData-antAll.txt
ant check 2>&1 | tee /tmp/icu4j-oldData-antCheck.txt ant check 2>&1 | tee /tmp/icu4j-oldData-antCheck.txt
# 12. Now build the new data and test data for ICU4J # 12. Transfer the data to ICU4J.
# 12a. You must first configure ICU in order to add the unicore data.
cd $ICU4C_DIR/source
ICU_DATA_BUILDTOOL_OPTS=--include_uni_core_data ./runConfigureICU Linux
# 12b. Now buil the jar files.
cd $ICU4C_DIR/source/data cd $ICU4C_DIR/source/data
make clean
make -j6
make icu4j-data-install make icu4j-data-install
cd $ICU4C_DIR/source/test/testdata cd $ICU4C_DIR/source/test/testdata
make clean
make -j6
make icu4j-data-install make icu4j-data-install
# 13. Now rebuild ICU4J with the new data and run tests: # 13. Now rebuild ICU4J with the new data and run tests: