A modern Music Player Daemon based on Rockbox open source high quality audio player
libadwaita audio rust zig deno mpris rockbox mpd

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

+6 -6
+3 -3
utils/common/deploy-rbutil.py
··· 50 50 deploy.progexe = { 51 51 "win32" : "release/RockboxUtility.exe", 52 52 "darwin" : "RockboxUtility.app", 53 - "linux" : "RockboxUtility" 53 + "linux2" : "RockboxUtility" 54 54 } 55 55 # OS X 10.6 defaults to gcc 4.2. Building universal binaries that are 56 56 # compatible with 10.4 requires using gcc-4.0. 57 57 deploy.qmakespec = { 58 58 "win32" : "", 59 59 "darwin" : "macx-g++40", 60 - "linux" : "" 60 + "linux2" : "" 61 61 } 62 62 deploy.make = { 63 63 "win32" : "mingw32-make", 64 64 "darwin" : "make", 65 - "linux" : "make" 65 + "linux2" : "make" 66 66 } 67 67 68 68 # all files of the program. Will get put into an archive after building
+3 -3
utils/common/deploy-themeeditor.py
··· 33 33 deploy.progexe = { 34 34 "win32" : "release/rbthemeeditor.exe", 35 35 "darwin" : "rbthemeeditor.app", 36 - "linux" : "rbthemeeditor" 36 + "linux2" : "rbthemeeditor" 37 37 } 38 38 # OS X 10.6 defaults to gcc 4.2. Building universal binaries that are 39 39 # compatible with 10.4 requires using gcc-4.0. 40 40 deploy.qmakespec = { 41 41 "win32" : "", 42 42 "darwin" : "macx-g++40", 43 - "linux" : "" 43 + "linux2" : "" 44 44 } 45 45 deploy.make = { 46 46 "win32" : "mingw32-make", 47 47 "darwin" : "make", 48 - "linux" : "make" 48 + "linux2" : "make" 49 49 } 50 50 51 51 # all files of the program. Will get put into an archive after building