aboutsummaryrefslogtreecommitdiff
path: root/tools/ccc/ccclib/Jobs.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/ccc/ccclib/Jobs.py')
-rw-r--r--tools/ccc/ccclib/Jobs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/ccc/ccclib/Jobs.py b/tools/ccc/ccclib/Jobs.py
index b7d4288788..1c077caa8e 100644
--- a/tools/ccc/ccclib/Jobs.py
+++ b/tools/ccc/ccclib/Jobs.py
@@ -23,7 +23,7 @@ class Command(Job):
def render(self, args):
argv = [self.executable]
for arg in self.args:
- argv.extend(arg.render(args))
+ argv.extend(args.render(arg))
return argv
def iterjobs(self):