From 2b13e868bee696d424db65ba29424897fa89c072 Mon Sep 17 00:00:00 2001 From: Rangi Date: Fri, 3 Jul 2020 17:50:03 -0400 Subject: Fix tools/unnamed.py --- tools/unnamed.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tools') diff --git a/tools/unnamed.py b/tools/unnamed.py index b52be548..1a8a7ce7 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("gold_obj := "): - objects = line[12:].strip().split() + if line.startswith("pokegold_obj := "): + objects = line[16:].strip().split() break else: print("Error: Object files not found!", file=stderr) -- cgit v1.2.3