ICU-4078 forgot to add -i description to help text

X-SVN-Rev: 16319
This commit is contained in:
Markus Scherer 2004-09-14 13:47:24 +00:00
parent 86ae6dd6fc
commit ba9290c9ab

View File

@ -122,9 +122,12 @@ main(int argc, char* argv[]) {
fprintf(stderr,
"\t-d or --destdir destination directory, followed by the path\n"
"\t-s or --sourcedir source directory, followed by the path\n"
"\t-i or --icudatadir directory for locating any needed intermediate data files,\n"
"\t followed by path, defaults to <%s>\n"
"\tsuffix suffix that is to be appended with a '-'\n"
"\t to the source file basenames before opening;\n"
"\t 'gennorm new' will read UnicodeData-new.txt etc.\n");
"\t 'gennorm new' will read UnicodeData-new.txt etc.\n",
u_getDataDirectory());
return argc<0 ? U_ILLEGAL_ARGUMENT_ERROR : U_ZERO_ERROR;
}