Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
PyPy
pypy
Commits
54854c13aaba
Commit
e855cca7
authored
Oct 28, 2019
by
Armin Rigo
Browse files
Merged in danchr/pypy/allow-forcing-no-embed (pull request
#676
)
package: allow suppressing embedded dependencies with an envvar
parents
81c30ab04ab4
bf745505226d
Changes
1
Hide whitespace changes
Inline
Side-by-side
pypy/tool/release/package.py
View file @
54854c13
...
...
@@ -320,6 +320,8 @@ def package(*args, **kwds):
options
.
no_tk
=
True
if
os
.
environ
.
has_key
(
"PYPY_EMBED_DEPENDENCIES"
):
options
.
embed_dependencies
=
True
elif
os
.
environ
.
has_key
(
"PYPY_NO_EMBED_DEPENDENCIES"
):
options
.
embed_dependencies
=
False
if
not
options
.
builddir
:
# The import actually creates the udir directory
from
rpython.tool.udir
import
udir
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment