From 52d919b484b5d372e4a26cafde8cea91c1c2e5ed Mon Sep 17 00:00:00 2001 From: David Benepe Date: Tue, 4 Aug 2020 15:04:45 -0500 Subject: [PATCH] Added xargs back in --- rename_sym.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rename_sym.sh b/rename_sym.sh index 7876a7ba..ffd68456 100755 --- a/rename_sym.sh +++ b/rename_sym.sh @@ -13,4 +13,4 @@ fi grep -rl "$1" asm/**/*.s src/**/*.{c,h} lib/**/*.{c,s} include/*.h data/dkr.data.s undefined_syms.txt | xargs sed -i "s/\b$1\b/$2/g" # This removes all the .o files that use the old name. -grep -rl "$1" build/**/*.o | rm +grep -rl "$1" build/**/*.o | xargs rm