forked from len0rd/rockbox
deploy: Support Python3.
Change-Id: Iff92a1f6a918f7da80f26f1a9ca02a6f6f082b7d
This commit is contained in:
parent
440791105a
commit
9b4e6ef7b3
3 changed files with 29 additions and 23 deletions
|
@ -54,7 +54,8 @@ deploy.bundlecopy = {
|
|||
deploy.progexe = {
|
||||
"win32" : "release/RockboxUtility.exe",
|
||||
"darwin" : "RockboxUtility.app",
|
||||
"linux2" : "RockboxUtility"
|
||||
"linux2" : "RockboxUtility",
|
||||
"linux" : "RockboxUtility"
|
||||
}
|
||||
deploy.regreplace = {
|
||||
"rbutil/rbutilqt/version.h" : [["\$Rev\$", "%REVISION%"],
|
||||
|
@ -66,12 +67,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