diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-06-15 10:53:36 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-06-15 10:53:36 -0400 |
commit | 703298a8f0d97138b8de851e793968cb0bdcd157 (patch) | |
tree | 2bd663af1f3c795cfa47714d1c9674be1a95187d /tools/unnamed.py | |
parent | 4f6f1926a5ef5c784f1eb46582fef2539c510f27 (diff) |
Fix tools/unnamed.py for pokegold
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 54a1473f..22f754e1 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"], stdout=PIPE).stdout.read().decode().split("\n"): - if line.startswith("crystal_obj := "): - objects = line[15:].strip().split() + if line.startswith("gold_obj := "): + objects = line[12:].strip().split() break else: print("Error: Object files not found!", file=stderr) |