aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/_distutils/ccompiler.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2020-08-02 09:56:57 -0400
committerJason R. Coombs <jaraco@jaraco.com>2020-08-02 09:56:57 -0400
commitc2fcb01de1306ec7171bd4cd6c2db20be6011cbd (patch)
treea04e1838faa5085204f453e4153fa697b69a76c7 /setuptools/_distutils/ccompiler.py
parent5578b4466d236ba3516a9df726e0c08a2eea3f06 (diff)
parent51b75e95de717a7d37bd1915a104a9e830fe5651 (diff)
downloadexternal_python_setuptools-c2fcb01de1306ec7171bd4cd6c2db20be6011cbd.tar.gz
external_python_setuptools-c2fcb01de1306ec7171bd4cd6c2db20be6011cbd.tar.bz2
external_python_setuptools-c2fcb01de1306ec7171bd4cd6c2db20be6011cbd.zip
Merge branch 'clean' of https://github.com/pypa/distutils into master
Diffstat (limited to 'setuptools/_distutils/ccompiler.py')
-rw-r--r--setuptools/_distutils/ccompiler.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/_distutils/ccompiler.py b/setuptools/_distutils/ccompiler.py
index b5ef143e..57bb94e8 100644
--- a/setuptools/_distutils/ccompiler.py
+++ b/setuptools/_distutils/ccompiler.py
@@ -906,8 +906,8 @@ int main (int argc, char **argv) {
def execute(self, func, args, msg=None, level=1):
execute(func, args, msg, self.dry_run)
- def spawn(self, cmd):
- spawn(cmd, dry_run=self.dry_run)
+ def spawn(self, cmd, **kwargs):
+ spawn(cmd, dry_run=self.dry_run, **kwargs)
def move_file(self, src, dst):
return move_file(src, dst, dry_run=self.dry_run)