diff --git a/Lib/distutils/command/install.py b/Lib/distutils/command/install.py index 21d971b8d34..5e8ade8d80c 100644 --- a/Lib/distutils/command/install.py +++ b/Lib/distutils/command/install.py @@ -272,7 +272,8 @@ def finalize_options (self): # 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', 'scripts', 'data'): + for name in ('lib', 'purelib', 'platlib', + 'scripts', 'data', 'headers'): attr = "install_" + name new_val = change_root (self.root, getattr (self, attr)) setattr (self, attr, new_val)