tools/make-frozen.py: Open files in binary mode.

modussl
Paul Sokolovsky 2015-05-30 00:38:44 +03:00
parent a8e7c03171
commit c02dc8b2c9
1 changed files with 2 additions and 2 deletions

View File

@ -49,8 +49,8 @@ print("const char mp_frozen_content[] = {")
for f, st in modules:
m = module_name(f)
print('"%s\\0"' % m)
data = open(sys.argv[1] + "/" + f).read()
data = repr(data)[1:-1]
data = open(sys.argv[1] + "/" + f, "rb").read()
data = repr(data)[2:-1]
data = data.replace('"', '\\"')
print('"%s"' % data)
print("};")