Author: Tobias Oberstein <[email protected]>
Branch:
Changeset: r68209:679ca2fdefb6
Date: 2013-11-18 14:04 +0100
http://bitbucket.org/pypy/pypy/changeset/679ca2fdefb6/
Log: allow disable stripping/tk via env var
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
@@ -217,5 +217,11 @@
else:
print_usage()
+ if os.environ.has_key("PYPY_PACKAGE_NOSTRIP"):
+ kw['nostrip'] = True
+
+ if os.environ.has_key("PYPY_PACKAGE_WITHOUTTK"):
+ kw['withouttk'] = True
+
args = args[i:]
package(*args, **kw)
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit