summaryrefslogtreecommitdiffstatshomepage
path: root/tools/make-frozen.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/make-frozen.py')
-rwxr-xr-xtools/make-frozen.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/make-frozen.py b/tools/make-frozen.py
index 28829ec74d..aaa688598e 100755
--- a/tools/make-frozen.py
+++ b/tools/make-frozen.py
@@ -40,7 +40,7 @@ print("#include <stdint.h>")
print("const char mp_frozen_str_names[] = {")
for f, st in modules:
m = module_name(f)
- print('"%s\\0"' % m)
+ print('"%s\\0"' % m.replace("/", "."))
print('"\\0"};')
print("const uint32_t mp_frozen_str_sizes[] = {")