diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-03-21 15:06:08 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-03-21 15:06:08 -0700 |
commit | f8b0b183482df5807abb24769678695411c5c439 (patch) | |
tree | 3d5486c791c311fa242cf27c2cd0a88f43bf4fed /emcc | |
parent | 68760ff153ef0835f72facf4d6ad07e5bae23b72 (diff) |
fix handling of EMCC_LEAVE_INPUTS_RAW
Diffstat (limited to 'emcc')
-rwxr-xr-x | emcc | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1228,7 +1228,8 @@ try: shutil.move(temp_files[0], in_temp(target_basename + '.bc')) final = in_temp(target_basename + '.bc') else: - final = input_files[0] + final = in_temp(input_files[0]) + shutil.copyfile(input_files[0], final) if DEBUG: print >> sys.stderr, 'emcc: saving intermediate processing steps to %s' % shared.EMSCRIPTEN_TEMP_DIR |