diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2021-12-22 04:13:01 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2021-12-22 04:38:46 -0500 |
commit | eba2bcd310caa49b51aa640055e44ef8c74b5581 (patch) | |
tree | 97fd2eb2d8b6f40442803a3d983466b3090ef1fa | |
parent | aefe5d10cda2692f5ea63e5f130a9c8be288b0f4 (diff) | |
download | python-setuptools-git-eba2bcd310caa49b51aa640055e44ef8c74b5581.tar.gz |
Add support for 'platsubdir'. Fixes pypa/distutils#85.
-rw-r--r-- | distutils/command/install.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/distutils/command/install.py b/distutils/command/install.py index 40be5ba6..4f944725 100644 --- a/distutils/command/install.py +++ b/distutils/command/install.py @@ -395,6 +395,7 @@ class install(Command): 'platlibdir': getattr(sys, 'platlibdir', 'lib'), 'implementation_lower': _get_implementation().lower(), 'implementation': _get_implementation(), + 'platsubdir': sysconfig.get_config_var('platsubdir'), } if HAS_USER_SITE: |