diff options
author | Greg Ward <gward@python.net> | 1999-07-10 02:02:31 +0000 |
---|---|---|
committer | Greg Ward <gward@python.net> | 1999-07-10 02:02:31 +0000 |
commit | ba3f108ec08116adec36471c7d0e5dbfcb97def2 (patch) | |
tree | 96a1870a29a596868c4c19814328d289fe1065e2 /Lib/distutils/command/install.py | |
parent | ccbb3f0ed4ea987cf7769bcb6709b2d8f1b450c6 (diff) | |
download | cpython-ba3f108ec08116adec36471c7d0e5dbfcb97def2.tar.gz cpython-ba3f108ec08116adec36471c7d0e5dbfcb97def2.zip |
Added a self-berating command relating to installation directories for
module distributions that contain platform-specific files.
Diffstat (limited to 'Lib/distutils/command/install.py')
-rw-r--r-- | Lib/distutils/command/install.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Lib/distutils/command/install.py b/Lib/distutils/command/install.py index 54b81879a56..01ea0052e6c 100644 --- a/Lib/distutils/command/install.py +++ b/Lib/distutils/command/install.py @@ -165,6 +165,14 @@ class Install (Command): # shared files, with no nice way to override it! (this # might be a Python problem, though, not a Distutils # 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 = \ os.path.join (self.install_lib, 'site-packages') else: |