Author: Tobias Oberstein <[email protected]>
Branch: release-2.2.x
Changeset: r68299:d223aed751df
Date: 2013-11-18 14:04 +0100
http://bitbucket.org/pypy/pypy/changeset/d223aed751df/

Log:    allow disable stripping/tk via env var (transplanted from
        679ca2fdefb681e38d4a4183979e44da642fe61d)

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
@@ -232,5 +232,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

Reply via email to