deploy: Support Python3.

Change-Id: Iff92a1f6a918f7da80f26f1a9ca02a6f6f082b7d
This commit is contained in:
Dominik Riebeling 2019-11-17 13:40:42 +01:00
parent 440791105a
commit 9b4e6ef7b3
3 changed files with 29 additions and 23 deletions

View file

@ -33,7 +33,8 @@ deploy.bundlecopy = {
deploy.progexe = {
"win32" : "release/rbthemeeditor.exe",
"darwin" : "rbthemeeditor.app",
"linux2" : "rbthemeeditor"
"linux2" : "rbthemeeditor",
"linux" : "rbthemeeditor"
}
deploy.regreplace = {}
# OS X 10.6 defaults to gcc 4.2. Building universal binaries that are
@ -41,12 +42,14 @@ deploy.regreplace = {}
deploy.qmakespec = {
"win32" : "",
"darwin" : "macx-g++40",
"linux2" : ""
"linux2" : "",
"linux" : ""
}
deploy.make = {
"win32" : "mingw32-make",
"darwin" : "make",
"linux2" : "make"
"linux2" : "make",
"linux" : "make"
}
# all files of the program. Will get put into an archive after building