Author: David Schneider <[email protected]>
Branch:
Changeset: r64033:97989d13642c
Date: 2013-05-13 18:53 +0200
http://bitbucket.org/pypy/pypy/changeset/97989d13642c/
Log: add armhf to getnightly
diff --git a/pypy/goal/getnightly.py b/pypy/goal/getnightly.py
--- a/pypy/goal/getnightly.py
+++ b/pypy/goal/getnightly.py
@@ -8,7 +8,9 @@
arch = 'linux'
cmd = 'wget "%s"'
tar = "tar -x -v --wildcards --strip-components=2 -f %s '*/bin/pypy'"
-if sys.platform.startswith('darwin'):
+ if os.uname()[-1].startswith('arm'):
+ arch += '-armhf-raspbian'
+elif sys.platform.startswith('darwin'):
arch = 'osx'
cmd = 'curl -O "%s"'
tar = "tar -x -v --strip-components=2 -f %s '*/bin/pypy'"
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit