diff options
author | Bryan Bishop <kanzure@gmail.com> | 2012-01-17 14:54:06 -0600 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2012-01-17 14:54:06 -0600 |
commit | be34aed58e24303a9d8dee6cf36009cbc2653568 (patch) | |
tree | f57412dd4bfa4a9ca52c49f6f5fbfee5a028185e /extras/analyze_incbins.py | |
parent | e5f9d4a1444d7a5dcb755ab1304b9be3ee4db6ed (diff) |
fix some offset errors in insert_texts.py
hg-commit-id: b131d049ecd3
Diffstat (limited to 'extras/analyze_incbins.py')
-rw-r--r-- | extras/analyze_incbins.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extras/analyze_incbins.py b/extras/analyze_incbins.py index cc8d9810..9cdc2083 100644 --- a/extras/analyze_incbins.py +++ b/extras/analyze_incbins.py @@ -235,7 +235,7 @@ def apply_diff(diff, try_fixing=True): #confirm it's working try: - subprocess.check_call("cd ../; make clean; LC_CTYPE=UTF-8 make", shell=True) + subprocess.check_call("cd ../; make clean; LC_CTYPE=C make", shell=True) return True except Exception, exc: if try_fixing: |