aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexandru Ardelean <ardeleanalex@gmail.com>2016-11-28 16:48:54 +0200
committerAlexandru Ardelean <ardeleanalex@gmail.com>2016-11-28 16:49:23 +0200
commitdf840c1e9f4c8f5f681c61d23fadd24b33b5d21f (patch)
tree4c39eb9c243ed9fcf4332333be1708dcc3556deb
parent13a03cf79808440e305abf5bfe04959dceb8e08f (diff)
python-setuptools: fix path creation in setup scripts
This was fixed a few versions back. But then python-setuptools changed. The problem is that python scripts installed via setuptools & pip would have `#!/build_dir_path/staging_dir/target-x86_64_musl-1.1.15/host/bin/python` as the path in the script, rather than the path on the target (`/usr/bin/python`). This fixes that. Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
-rw-r--r--lang/python-setuptools/patches/0002-fix-pyvenv-environment-get.patch16
1 files changed, 8 insertions, 8 deletions
diff --git a/lang/python-setuptools/patches/0002-fix-pyvenv-environment-get.patch b/lang/python-setuptools/patches/0002-fix-pyvenv-environment-get.patch
index c46a5f309..d96ab089c 100644
--- a/lang/python-setuptools/patches/0002-fix-pyvenv-environment-get.patch
+++ b/lang/python-setuptools/patches/0002-fix-pyvenv-environment-get.patch
@@ -1,13 +1,13 @@
diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py
-index df1655b..24c34e5 100755
+index e8b90c7..8598c44 100755
--- a/setuptools/command/easy_install.py
+++ b/setuptools/command/easy_install.py
-@@ -1885,7 +1885,7 @@ class CommandSpec(list):
+@@ -1946,6 +1946,8 @@ class CommandSpec(list):
+ Construct a CommandSpec from a parameter to build_scripts, which may
+ be None.
+ """
++ if os.environ.get('__PYVENV_LAUNCHER__'):
++ return cls.from_environment()
+ if isinstance(param, cls):
return param
if isinstance(param, list):
- return cls(param)
-- if param is None:
-+ if param is None or os.environ.get('__PYVENV_LAUNCHER__'):
- return cls.from_environment()
- # otherwise, assume it's a string.
- return cls.from_string(param)