diff options
author | Greg Ward <gward@python.net> | 2000-03-06 03:37:45 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2000-03-06 03:37:45 (GMT) |
commit | eb3f75e636316c7ee1edeb42b4ae2c0de9665f8c (patch) | |
tree | fe066d892d61616dc1ff8e9f5b4c402f9470f9a2 /Lib | |
parent | 4ba5da418cb031de58b8727a7c91cbfa4cf16936 (diff) | |
download | cpython-eb3f75e636316c7ee1edeb42b4ae2c0de9665f8c.zip cpython-eb3f75e636316c7ee1edeb42b4ae2c0de9665f8c.tar.gz cpython-eb3f75e636316c7ee1edeb42b4ae2c0de9665f8c.tar.bz2 |
Don't pass 'keep_dir' to 'compile()' method of CCompiler -- no longer used.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/distutils/command/build_clib.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/distutils/command/build_clib.py b/Lib/distutils/command/build_clib.py index 7a6ef7a..c49e3ca 100644 --- a/Lib/distutils/command/build_clib.py +++ b/Lib/distutils/command/build_clib.py @@ -183,7 +183,6 @@ class build_clib (Command): include_dirs = build_info.get ('include_dirs') objects = self.compiler.compile (sources, output_dir=self.build_temp, - keep_dir=1, macros=macros, include_dirs=include_dirs, debug=self.debug) |