summaryrefslogtreecommitdiff
path: root/Lib/distutils/command/install.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/distutils/command/install.py')
-rw-r--r--Lib/distutils/command/install.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/command/install.py b/Lib/distutils/command/install.py
index 6385fdc224..2a59e16b96 100644
--- a/Lib/distutils/command/install.py
+++ b/Lib/distutils/command/install.py
@@ -273,7 +273,7 @@ class install (Command):
# If a new root directory was supplied, make all the installation
# dirs relative to it.
if self.root is not None:
- for name in ('lib', 'purelib', 'platlib',
+ for name in ('libbase', 'lib', 'purelib', 'platlib',
'scripts', 'data', 'headers'):
attr = "install_" + name
new_val = change_root (self.root, getattr (self, attr))