summaryrefslogtreecommitdiff
path: root/packaging
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2011-06-13 21:41:56 +0300
committerAndrei Karas <akaras@inbox.ru>2011-06-13 21:41:56 +0300
commitfb0f86589ae9e2d582383cea43e0a391e8d4739d (patch)
treedd4fc71e502b302a17eec8c8d6034cacf3158a82 /packaging
parente364eb8a2d1bc92af484a2251723275628fe3c18 (diff)
downloadmv-fb0f86589ae9e2d582383cea43e0a391e8d4739d.tar.gz
mv-fb0f86589ae9e2d582383cea43e0a391e8d4739d.tar.bz2
mv-fb0f86589ae9e2d582383cea43e0a391e8d4739d.tar.xz
mv-fb0f86589ae9e2d582383cea43e0a391e8d4739d.zip
Rename pt_PT help dir to pt. Fix make files in tips dirs.
Add support for pt/pt_BR help in windows installer.
Diffstat (limited to 'packaging')
-rw-r--r--packaging/windows/setup.nsi12
1 files changed, 10 insertions, 2 deletions
diff --git a/packaging/windows/setup.nsi b/packaging/windows/setup.nsi
index 0d5bd3329..8ffae0d06 100644
--- a/packaging/windows/setup.nsi
+++ b/packaging/windows/setup.nsi
@@ -184,6 +184,10 @@ Section "Core files (required)" SecCore
CreateDirectory "$INSTDIR\data\graphics"
CreateDirectory "$INSTDIR\data\help"
CreateDirectory "$INSTDIR\data\help\fr"
+ CreateDirectory "$INSTDIR\data\help\pt"
+ CreateDirectory "$INSTDIR\data\help\pt\tips"
+ CreateDirectory "$INSTDIR\data\help\pt_BR"
+ CreateDirectory "$INSTDIR\data\help\pt_BR\tips"
CreateDirectory "$INSTDIR\data\help\ru"
CreateDirectory "$INSTDIR\data\help\tips"
CreateDirectory "$INSTDIR\data\icons"
@@ -259,10 +263,14 @@ Section "Core files (required)" SecCore
File "${SRCDIR}\data\themes\wood\*.xml"
SetOutPath "$INSTDIR\data\help"
File "${SRCDIR}\data\help\*.txt"
- SetOutPath "$INSTDIR\data\help\ru"
- File "${SRCDIR}\data\help\ru\*.txt"
SetOutPath "$INSTDIR\data\help\fr"
File "${SRCDIR}\data\help\fr\*.txt"
+ SetOutPath "$INSTDIR\data\help\pt\tips"
+ File "${SRCDIR}\data\help\pt\tips\*.txt"
+ SetOutPath "$INSTDIR\data\help\pt_BR\tips"
+ File "${SRCDIR}\data\help\pt_BR\tips\*.txt"
+ SetOutPath "$INSTDIR\data\help\ru"
+ File "${SRCDIR}\data\help\ru\*.txt"
SetOutPath "$INSTDIR\data\help\tips"
File "${SRCDIR}\data\help\tips\*.txt"
File "${SRCDIR}\data\help\tips\*.jpg"