diff options
| author | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2011-03-07 21:22:57 +0000 |
|---|---|---|
| committer | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2011-03-07 21:22:57 +0000 |
| commit | 8059347300775edaeb50eca784a39168c4b22826 (patch) | |
| tree | 64c74377c267c51528698af31860368b5a755ce0 /utils/common | |
| parent | 77d409dd397d6c3af3ffca7747f30d066c4aa0eb (diff) | |
| download | rockbox-8059347300775edaeb50eca784a39168c4b22826.zip rockbox-8059347300775edaeb50eca784a39168c4b22826.tar.gz rockbox-8059347300775edaeb50eca784a39168c4b22826.tar.bz2 rockbox-8059347300775edaeb50eca784a39168c4b22826.tar.xz | |
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
Diffstat (limited to 'utils/common')
| -rwxr-xr-x | utils/common/deploy-rbutil.py | 6 | ||||
| -rwxr-xr-x | utils/common/deploy-themeeditor.py | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/utils/common/deploy-rbutil.py b/utils/common/deploy-rbutil.py index 27c6969..dea9f32 100755 --- a/utils/common/deploy-rbutil.py +++ b/utils/common/deploy-rbutil.py @@ -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 diff --git a/utils/common/deploy-themeeditor.py b/utils/common/deploy-themeeditor.py index 820856c..4569052 100755 --- a/utils/common/deploy-themeeditor.py +++ b/utils/common/deploy-themeeditor.py @@ -33,19 +33,19 @@ deploy.bundlecopy = { deploy.progexe = { "win32" : "release/rbthemeeditor.exe", "darwin" : "rbthemeeditor.app", - "linux" : "rbthemeeditor" + "linux2" : "rbthemeeditor" } # 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 |