diff options
author | Éric Araujo <merwok@netwok.org> | 2011-06-09 14:07:46 +0200 |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2011-06-09 14:07:46 +0200 |
commit | e00a6703e8d13ae4ab30466998ef62098868f98c (patch) | |
tree | a4d6fcb7fe4b323727b491c7a7b042fc0f14a657 /setup.py | |
parent | 9a82eaade3cbfba9895b6121daf8ddb65b5aaa4d (diff) | |
parent | e6792c1e771fab4ed025beeb8f71fb2d5c7d53e8 (diff) | |
download | cpython-git-e00a6703e8d13ae4ab30466998ef62098868f98c.tar.gz |
Branch merge
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -1780,6 +1780,13 @@ class PyBuildInstall(install): install.initialize_options(self) self.warn_dir=0 + # Customize subcommands to not install an egg-info file for Python + sub_commands = [('install_lib', install.has_lib), + ('install_headers', install.has_headers), + ('install_scripts', install.has_scripts), + ('install_data', install.has_data)] + + class PyBuildInstallLib(install_lib): # Do exactly what install_lib does but make sure correct access modes get # set on installed directories and files. All installed files with get |