mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-06 14:05:32 +00:00
ICU-22406 Add LIBRARY_DATA_DIR
This commit is contained in:
parent
ea7ed9a9db
commit
f00ff4f5e3
3 changed files with 5 additions and 3 deletions
|
@ -271,7 +271,7 @@ def main(argv):
|
|||
"IN_DIR": "$(srcdir)",
|
||||
"INDEX_NAME": "res_index"
|
||||
}
|
||||
makefile_env = ["ICUDATA_CHAR", "OUT_DIR", "TMP_DIR"]
|
||||
makefile_env = ["ICUDATA_CHAR", "OUT_DIR", "TMP_DIR", "LIBRARY_DATA_DIR"]
|
||||
common = {
|
||||
key: "$(%s)" % key
|
||||
for key in list(makefile_vars.keys()) + makefile_env
|
||||
|
@ -289,7 +289,8 @@ def main(argv):
|
|||
"CWD_DIR": os.getcwd(),
|
||||
"INDEX_NAME": "res_index",
|
||||
# TODO: Pull this from configure script:
|
||||
"ICUDATA_CHAR": "l"
|
||||
"ICUDATA_CHAR": "l",
|
||||
"LIBRARY_DATA_DIR": os.path.join(args.out_dir, "build"),
|
||||
}
|
||||
|
||||
# Automatically load BUILDRULES from the src_dir
|
||||
|
|
2
icu4c/source/test/testdata/BUILDRULES.py
vendored
2
icu4c/source/test/testdata/BUILDRULES.py
vendored
|
@ -63,7 +63,7 @@ def generate_rb(config, io, common_vars):
|
|||
input_files = [InFile("%s.txt" % bn) for bn in basenames],
|
||||
output_files = [OutFile("%s.res" % bn) for bn in basenames],
|
||||
tool = IcuTool("genrb"),
|
||||
args = "-q -i {OUT_DIR}/../../../../data/out/build -s {IN_DIR} -d {OUT_DIR} {INPUT_FILE}",
|
||||
args = "-q -i {LIBRARY_DATA_DIR} -s {IN_DIR} -d {OUT_DIR} {INPUT_FILE}",
|
||||
format_with = {},
|
||||
repeat_with = {}
|
||||
),
|
||||
|
|
1
icu4c/source/test/testdata/Makefile.in
vendored
1
icu4c/source/test/testdata/Makefile.in
vendored
|
@ -92,6 +92,7 @@ TESTSRCDATADIR=$(top_srcdir)/test/testdata
|
|||
TESTOUTDIR=$(top_builddir)/test/testdata/out
|
||||
BUILD_DIRS = $(TESTOUTDIR) $(TESTBUILDDIR) $(TESTOUTDIR)/$(TESTDT)
|
||||
GENTEST=$(TOOLDIR)/gentest/gentest$(TOOLEXEEXT)
|
||||
LIBRARY_DATA_DIR=$(OUTDIR)/build
|
||||
|
||||
ifeq ($(PKGDATA_MODE),common)
|
||||
ICU_DATA_OPT = -i $(OUTDIR)
|
||||
|
|
Loading…
Add table
Reference in a new issue