From f0909b5ef7b790f93f9df661543e23ae31f95099 Mon Sep 17 00:00:00 2001 From: kichik Date: Sun, 29 Sep 2002 20:57:22 +0000 Subject: [PATCH] Now shows the number of language tables in the summary. git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1217 212acab6-be3b-0410-9dea-997c60f758d6 --- Source/build.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/build.cpp b/Source/build.cpp index 2e225250..c577a2fc 100644 --- a/Source/build.cpp +++ b/Source/build.cpp @@ -1441,14 +1441,14 @@ int CEXEBuild::write_output(void) int ne=build_entries.getlen()/sizeof(entry); INFO_MSG("Install: %d instruction%s (%d bytes), ",ne,ne==1?"":"s",ne*sizeof(entry)); INFO_MSG("%d byte string table, ",build_strlist.getlen()); - INFO_MSG("%d byte language tables.\n",build_langtables.getlen()); + INFO_MSG("%d byte language tables (%d tables).\n",build_langtables.getlen(),string_tables.size()); if (ubuild_entries.getlen()) { int tmp=ubuild_entries.getlen()/sizeof(entry); INFO_MSG("Uninstall: "); INFO_MSG("%d instruction%s (%d bytes), ",tmp,tmp==1?"":"s",tmp*sizeof(entry)); INFO_MSG("%d byte string table, ",ubuild_strlist.getlen()); - INFO_MSG("%d byte language tables.\n",ubuild_langtables.getlen()); + INFO_MSG("%d byte language tables (%d tables).\n",ubuild_langtables.getlen(),string_tables.size()); }