diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-07-13 20:54:33 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-07-13 20:54:33 -0400 |
commit | 2e8b4836b072602d1c200b1f9735e3e0c4242985 (patch) | |
tree | e9ad1e38c51586aa3051802fd19711b65124f35e /tools/unnamed.py | |
parent | eca33ef190d3dfcb15e24f1e7e9dac4de9ac3437 (diff) |
Fix tools/unnamed.py
Diffstat (limited to 'tools/unnamed.py')
-rwxr-xr-x | tools/unnamed.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/unnamed.py b/tools/unnamed.py index cb288f19e..d3d6633e3 100755 --- a/tools/unnamed.py +++ b/tools/unnamed.py @@ -39,8 +39,8 @@ objects = None if args.rootdir: for line in Popen(["make", "-C", args.rootdir, "-s", "-p", "DEBUG=1"], stdout=PIPE).stdout.read().decode().split("\n"): - if line.startswith("crystal_obj := "): - objects = line[15:].strip().split() + if line.startswith("pokecrystal_obj := "): + objects = line[19:].strip().split() break else: print("Error: Object files not found!", file=stderr) |