mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-17 03:57:38 -04:00
deploy: Support Python3.
Change-Id: Iff92a1f6a918f7da80f26f1a9ca02a6f6f082b7d
This commit is contained in:
parent
440791105a
commit
9b4e6ef7b3
3 changed files with 29 additions and 23 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue