summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPikalaxALT <pikalaxalt@gmail.com>2021-06-18 12:53:15 -0400
committerPikalaxALT <pikalaxalt@gmail.com>2021-06-18 12:53:15 -0400
commit6ca73737cf5142962e8c27d1b6750158c60676c6 (patch)
treeb30dd1babc434c73cb8e886f6a6b038b0244dda8
parentae8f6e29f8906d53172a05f7b7b497510fe7617c (diff)
Fix regex error
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 384f012d1..2e5afdf0c 100644
--- a/Makefile
+++ b/Makefile
@@ -440,4 +440,4 @@ libagbsyscall:
###################
$(SYM): $(ELF)
- $(OBJDUMP) -t $< | sort -u | grep -E "^0[2389]" | $(PERL) -p -e 's/^(\w{8}) (\w).{6} \S+\t(\w{8}) (\w+)$$/\1 \2 \3 \4/g' > $@
+ $(OBJDUMP) -t $< | sort -u | grep -E "^0[2389]" | $(PERL) -p -e 's/^(\w{8}) (\w).{6} \S+\t(\w{8}) (\S+)$$/\1 \2 \3 \4/g' > $@