mirror of
https://git.code.sf.net/p/fldigi/fldigi
synced 2026-08-13 17:47:54 -04:00
nsis script
* some systems require explici placement of locale files
This commit is contained in:
parent
29bbc229ee
commit
49fe742b93
2 changed files with 3 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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]);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue