diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-01-17 18:53:57 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-01-17 18:53:57 -0800 |
commit | 907f7b1c9c482726866a6f66ef701281a56c1df6 (patch) | |
tree | e274b696191bb037dab6a1aa99fbbd767188a655 | |
parent | a8ff7b2bdf88c45c476c00b4b83bf8a91a8da10a (diff) |
fix emcc bug from last commit
-rwxr-xr-x | emcc | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -478,8 +478,8 @@ try: # We need to build and link the library in if DEBUG: print >> sys.stderr, 'emcc: including %s' % name extra_files_to_link.append(shared.Cache.get(name, create)) - if fix: - fix() + if fix: + fix() # First, combine the bitcode files if there are several if len(input_files) + len(extra_files_to_link) > 1: |