diff options
author | Dominic Wong <dom@dominic-wong.name> | 2013-11-19 01:38:19 +0800 |
---|---|---|
committer | Dominic Wong <dom@dominic-wong.name> | 2013-11-19 01:38:19 +0800 |
commit | 1b0899f7a171dcb5c74e833763509c31adba8417 (patch) | |
tree | ef5239c77c5f208e7baa8304eeb988bafc08befc /emcc | |
parent | f37e8f5869da88b891384db859c18a7243505d61 (diff) |
Renamed outDep to out_dep.
Diffstat (limited to 'emcc')
-rwxr-xr-x | emcc | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1273,8 +1273,8 @@ try: # It will be deleted with the rest of the temporary directory. deps = open(temp_output_base + '.d').read() deps = deps.replace(temp_output_base + '.o', specified_target) - with open(os.path.join(os.path.dirname(specified_target), os.path.basename(unsuffixed(input_files[0]) + '.d')), "w") as outDep: - outDep.write(deps) + with open(os.path.join(os.path.dirname(specified_target), os.path.basename(unsuffixed(input_files[0]) + '.d')), "w") as out_dep: + out_dep.write(deps) else: assert len(original_input_files) == 1 or not has_dash_c, 'fatal error: cannot specify -o with -c with multiple files' + str(sys.argv) + ':' + str(original_input_files) # We have a specified target (-o <target>), which is not JavaScript or HTML, and |