Author: Matti Picus <matti.pi...@gmail.com>
Branch: 
Changeset: r1050:527820e0350d
Date: 2017-12-13 18:41 +0200
http://bitbucket.org/pypy/buildbot/changeset/527820e0350d/

Log:    fix for py3.5 (death by a thousand paper cuts)

diff --git a/bot2/pypybuildbot/builds.py b/bot2/pypybuildbot/builds.py
--- a/bot2/pypybuildbot/builds.py
+++ b/bot2/pypybuildbot/builds.py
@@ -735,7 +735,7 @@
             haltOnFailure=True,
             workdir='.'))
         # copy libpypy-c.so to the expected location within the pypy source 
checkout, if available
-        command = 'if [ -e pypy-c/bin/libpypy-c.so ]; then cp -v 
pypy-c/bin/libpypy-c.so build/pypy/goal; fi;'
+        command = 'cp -v pypy-c/bin/libpypy*-c.so build/pypy/goal/ || true'
         self.addStep(ShellCmd(
             description="copy libpypy-c.so",
             command=command,
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to