Author: Matti Picus <[email protected]>
Branch:
Changeset: r92916:503b1a72abab
Date: 2017-11-03 17:11 +0200
http://bitbucket.org/pypy/pypy/changeset/503b1a72abab/
Log: fix tests
diff --git a/pypy/tool/release/package.py b/pypy/tool/release/package.py
--- a/pypy/tool/release/package.py
+++ b/pypy/tool/release/package.py
@@ -213,8 +213,9 @@
old_dir = os.getcwd()
try:
os.chdir(str(builddir))
- for source, target in binaries:
- smartstrip(bindir.join(target), keep_debug=options.keep_debug)
+ if not _fake:
+ for source, target in binaries:
+ smartstrip(bindir.join(target), keep_debug=options.keep_debug)
#
if USE_ZIPFILE_MODULE:
import zipfile
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit