summaryrefslogtreecommitdiff
path: root/utils/common/deploy-rbutil.py
diff options
context:
space:
mode:
Diffstat (limited to 'utils/common/deploy-rbutil.py')
-rwxr-xr-xutils/common/deploy-rbutil.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/utils/common/deploy-rbutil.py b/utils/common/deploy-rbutil.py
index 2cdbdb52b5..9bfc909c2c 100755
--- a/utils/common/deploy-rbutil.py
+++ b/utils/common/deploy-rbutil.py
@@ -54,7 +54,8 @@ deploy.bundlecopy = {
54deploy.progexe = { 54deploy.progexe = {
55 "win32" : "release/RockboxUtility.exe", 55 "win32" : "release/RockboxUtility.exe",
56 "darwin" : "RockboxUtility.app", 56 "darwin" : "RockboxUtility.app",
57 "linux2" : "RockboxUtility" 57 "linux2" : "RockboxUtility",
58 "linux" : "RockboxUtility"
58} 59}
59deploy.regreplace = { 60deploy.regreplace = {
60 "rbutil/rbutilqt/version.h" : [["\$Rev\$", "%REVISION%"], 61 "rbutil/rbutilqt/version.h" : [["\$Rev\$", "%REVISION%"],
@@ -66,12 +67,14 @@ deploy.regreplace = {
66deploy.qmakespec = { 67deploy.qmakespec = {
67 "win32" : "", 68 "win32" : "",
68 "darwin" : "macx-g++40", 69 "darwin" : "macx-g++40",
69 "linux2" : "" 70 "linux2" : "",
71 "linux" : ""
70} 72}
71deploy.make = { 73deploy.make = {
72 "win32" : "mingw32-make", 74 "win32" : "mingw32-make",
73 "darwin" : "make", 75 "darwin" : "make",
74 "linux2" : "make" 76 "linux2" : "make",
77 "linux" : "make"
75} 78}
76 79
77# all files of the program. Will get put into an archive after building 80# all files of the program. Will get put into an archive after building