summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/command/install_headers.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/distutils/command/install_headers.py')
-rw-r--r--Lib/distutils/command/install_headers.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/Lib/distutils/command/install_headers.py b/Lib/distutils/command/install_headers.py
index 2e6ce86..5c06d57 100644
--- a/Lib/distutils/command/install_headers.py
+++ b/Lib/distutils/command/install_headers.py
@@ -17,16 +17,21 @@ class install_headers (Command):
user_options = [('install-dir=', 'd',
"directory to install header files to"),
+ ('force', 'f',
+ "force installation (overwrite existing files)"),
]
def initialize_options (self):
self.install_dir = None
+ self.force = 0
self.outfiles = []
def finalize_options (self):
self.set_undefined_options('install',
- ('install_headers', 'install_dir'))
+ ('install_headers', 'install_dir'),
+ ('force', 'force'))
+
def run (self):
headers = self.distribution.headers