nsis script

* some systems require explici placement of locale files
This commit is contained in:
dave-w1hkj 2025-07-05 00:44:23 -05:00 committed by dave-w1hkj
parent 29bbc229ee
commit 49fe742b93
2 changed files with 3 additions and 2 deletions

View file

@ -130,7 +130,8 @@ SectionEnd
File "${FLDIGI_BINARY}"
File /nonfatal "${DIST_DEPS}/*"
!ifdef FLDIGI_LOCALE_DIR
File /r "${FLDIGI_LOCALE_PATH}/${FLDIGI_LOCALE_DIR}"
SetOutPath $INSTDIR\locale
File /r "${FLDIGI_LOCALE_PATH}/${FLDIGI_LOCALE_DIR}\*.mo"
!endif
StrCpy $WANT_FLDIGI "true"
SectionEnd

View file

@ -1124,7 +1124,7 @@ int Table::handle(int event) {
for (int col = 0; col < nCols; col++) {
if (col == 0)
strcpy(buffer, tableRow[col]);
else
else {
strcat(buffer, "\t");
strcat(buffer, tableRow[col]);
}