ICU-8888 Fix missing identifier error in pkgdata

X-SVN-Rev: 30918
This commit is contained in:
Michael Ow 2011-11-04 02:40:39 +00:00
parent 2f7c17f854
commit b74ae536a7

View file

@ -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);