1
0
Fork 0
forked from len0rd/rockbox

Detect when building for 64bit Linux and adjust tarball name.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27095 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Dominik Riebeling 2010-06-23 20:15:14 +00:00
parent deab1bb2f5
commit 168eba1aec

View file

@ -496,6 +496,8 @@ def main():
elif sys.platform == "darwin": elif sys.platform == "darwin":
archive = macdeploy(ver, sourcefolder) archive = macdeploy(ver, sourcefolder)
else: else:
if os.uname()[4].endswith("64"):
ver += "-64bit"
archive = tarball(ver, sourcefolder) archive = tarball(ver, sourcefolder)
# remove temporary files # remove temporary files