lede-packages-rs

git clone git://archive.git.mtrnord.blog/MTRNord/lede-packages-rs.git
Log | Files | Refs | README | LICENSE

commit c3441865cab45cc30cb0db794a43cf8d6305dc4b
parent df840c1e9f4c8f5f681c61d23fadd24b33b5d21f
Author: Alexandru Ardelean <ardeleanalex@gmail.com>
Date:   Mon, 28 Nov 2016 16:51:07 +0200

python3-setuptools: fix path creation in setup scripts

Same as for python-setuptools (in previous commit).

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>

Diffstat:
Mlang/python3-setuptools/patches/0002-fix-pyvenv-environment-get.patch | 16++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/lang/python3-setuptools/patches/0002-fix-pyvenv-environment-get.patch b/lang/python3-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)