mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-15 17:56:54 +00:00
ICU-8888 Fix missing identifier error in pkgdata
X-SVN-Rev: 30918
This commit is contained in:
parent
2f7c17f854
commit
b74ae536a7
1 changed files with 5 additions and 0 deletions
|
@ -691,7 +691,12 @@ static int32_t pkg_executeOptions(UPKGOptions *o) {
|
|||
fprintf(stdout, "# Writing object code to %s ..\n", gencFilePath);
|
||||
}
|
||||
if (o->withoutAssembly) {
|
||||
#ifdef BUILD_DATA_WITHOUT_ASSEMBLY
|
||||
result = pkg_createWithoutAssemblyCode(o, targetDir, mode);
|
||||
#else
|
||||
/* This error should not occur. */
|
||||
fprintf(stderr, "Error- BUILD_DATA_WITHOUT_ASSEMBLY is not defined. Internal error.\n");
|
||||
#endif
|
||||
} else {
|
||||
#ifdef CAN_WRITE_OBJ_CODE
|
||||
writeObjectCode(datFileNamePath, o->tmpDir, o->entryName, NULL, NULL, gencFilePath);
|
||||
|
|
Loading…
Add table
Reference in a new issue