forked from len0rd/rockbox
Fix cross compiling on Linux: Python uses "linux2" as platform name.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29539 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
77d409dd39
commit
8059347300
2 changed files with 6 additions and 6 deletions
|
@ -50,19 +50,19 @@ deploy.bundlecopy = {
|
|||
deploy.progexe = {
|
||||
"win32" : "release/RockboxUtility.exe",
|
||||
"darwin" : "RockboxUtility.app",
|
||||
"linux" : "RockboxUtility"
|
||||
"linux2" : "RockboxUtility"
|
||||
}
|
||||
# OS X 10.6 defaults to gcc 4.2. Building universal binaries that are
|
||||
# compatible with 10.4 requires using gcc-4.0.
|
||||
deploy.qmakespec = {
|
||||
"win32" : "",
|
||||
"darwin" : "macx-g++40",
|
||||
"linux" : ""
|
||||
"linux2" : ""
|
||||
}
|
||||
deploy.make = {
|
||||
"win32" : "mingw32-make",
|
||||
"darwin" : "make",
|
||||
"linux" : "make"
|
||||
"linux2" : "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