aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/_distutils/ccompiler.py
diff options
context:
space:
mode:
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)