diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-01-07 01:29:28 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-01-07 01:29:28 +0000 |
commit | fb2c5c44fda084ae824f129de4120f1694e6f5a9 (patch) | |
tree | 9ca43ba5a1305bcc8b50e20ea781394eb31637eb /tools/ccc/ccclib/Tools.py | |
parent | bdd686dc6af3669a6bf1c6bb09aea3437a67fb60 (diff) |
ccc: Refactor so that all accesses to actual input strings go through
the ArgList.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@61844 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/ccc/ccclib/Tools.py')
-rw-r--r-- | tools/ccc/ccclib/Tools.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/ccc/ccclib/Tools.py b/tools/ccc/ccclib/Tools.py index 1468fe899c..779d5d3922 100644 --- a/tools/ccc/ccclib/Tools.py +++ b/tools/ccc/ccclib/Tools.py @@ -139,7 +139,7 @@ class Collect2Tool(Tool): if arg.opt.name in ('-framework',): cmd_args.append(arg) for input in inputs: - cmd_args.append(input.source) + cmd_args.append(input.source) if isinstance(output, Arguments.DerivedArg): cmd_args.extend([Arguments.DerivedArg('-o'), output]) else: |