diff options
Diffstat (limited to 'utils/common/deploy-themeeditor.py')
-rwxr-xr-x | utils/common/deploy-themeeditor.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/utils/common/deploy-themeeditor.py b/utils/common/deploy-themeeditor.py index 0b72d43985..a85317a426 100755 --- a/utils/common/deploy-themeeditor.py +++ b/utils/common/deploy-themeeditor.py | |||
@@ -33,7 +33,8 @@ deploy.bundlecopy = { | |||
33 | deploy.progexe = { | 33 | deploy.progexe = { |
34 | "win32" : "release/rbthemeeditor.exe", | 34 | "win32" : "release/rbthemeeditor.exe", |
35 | "darwin" : "rbthemeeditor.app", | 35 | "darwin" : "rbthemeeditor.app", |
36 | "linux2" : "rbthemeeditor" | 36 | "linux2" : "rbthemeeditor", |
37 | "linux" : "rbthemeeditor" | ||
37 | } | 38 | } |
38 | deploy.regreplace = {} | 39 | deploy.regreplace = {} |
39 | # OS X 10.6 defaults to gcc 4.2. Building universal binaries that are | 40 | # OS X 10.6 defaults to gcc 4.2. Building universal binaries that are |
@@ -41,12 +42,14 @@ deploy.regreplace = {} | |||
41 | deploy.qmakespec = { | 42 | deploy.qmakespec = { |
42 | "win32" : "", | 43 | "win32" : "", |
43 | "darwin" : "macx-g++40", | 44 | "darwin" : "macx-g++40", |
44 | "linux2" : "" | 45 | "linux2" : "", |
46 | "linux" : "" | ||
45 | } | 47 | } |
46 | deploy.make = { | 48 | deploy.make = { |
47 | "win32" : "mingw32-make", | 49 | "win32" : "mingw32-make", |
48 | "darwin" : "make", | 50 | "darwin" : "make", |
49 | "linux2" : "make" | 51 | "linux2" : "make", |
52 | "linux" : "make" | ||
50 | } | 53 | } |
51 | 54 | ||
52 | # all files of the program. Will get put into an archive after building | 55 | # all files of the program. Will get put into an archive after building |