tools/make-frozen.py: Handle trailing slash in argument more reliably.

modussl
Paul Sokolovsky 2015-06-03 19:24:57 +03:00
parent 0e6c89a5c8
commit f8a39e3bb1
1 changed files with 2 additions and 4 deletions

View File

@ -26,16 +26,14 @@ def module_name(f):
modules = []
root = sys.argv[1]
root = sys.argv[1].rstrip("/")
root_len = len(root)
if root[-1] != "/":
root_len += 1
for dirpath, dirnames, filenames in os.walk(root):
for f in filenames:
fullpath = dirpath + "/" + f
st = os.stat(fullpath)
modules.append((fullpath[root_len:], st))
modules.append((fullpath[root_len + 1:], st))
print("#include <stdint.h>")
print("const uint16_t mp_frozen_sizes[] = {")