Commit ba3f108e authored by Greg Ward's avatar Greg Ward

Added a self-berating command relating to installation directories for

module distributions that contain platform-specific files.
parent ccbb3f0e
...@@ -165,6 +165,14 @@ class Install (Command): ...@@ -165,6 +165,14 @@ class Install (Command):
# shared files, with no nice way to override it! (this # shared files, with no nice way to override it! (this
# might be a Python problem, though, not a Distutils # might be a Python problem, though, not a Distutils
# problem...) # problem...)
# NO: the way to fix this is
# * any platform-dependent files in distribution?
# yes: install under exec-prefix
# no: install under prefix
# ...which will require a pretty major rethink of all
# this. Damn.
self.install_site_platlib = \ self.install_site_platlib = \
os.path.join (self.install_lib, 'site-packages') os.path.join (self.install_lib, 'site-packages')
else: else:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment