mirror of
https://github.com/sockspls/badfish
synced 2025-05-03 18:19:35 +00:00
Drop grep and tr dependency in Makefile
Use only sed to get the bench signature. No functional change.
This commit is contained in:
parent
46fdb14b2f
commit
05e31c5e5f
1 changed files with 3 additions and 3 deletions
|
@ -446,7 +446,7 @@ profile-build:
|
||||||
|
|
||||||
embed-signature:
|
embed-signature:
|
||||||
@echo "Running benchmark for getting the signature ..."
|
@echo "Running benchmark for getting the signature ..."
|
||||||
@$(SIGNBENCH) 2>&1 | grep 'Nodes searched' | grep -o ": .*" | tr -d ': ' > sign.txt
|
@$(SIGNBENCH) 2>&1 | sed -n 's/Nodes searched : \(.*\)/\1/p' > sign.txt
|
||||||
@sed -i -e 's,^,/static const string Version/s/"\\(.*\\)"/"sig-,1' -e 's,$$,"/1,1' sign.txt
|
@sed -i -e 's,^,/static const string Version/s/"\\(.*\\)"/"sig-,1' -e 's,$$,"/1,1' sign.txt
|
||||||
@sed -i -f sign.txt misc.cpp
|
@sed -i -f sign.txt misc.cpp
|
||||||
@rm sign.txt
|
@rm sign.txt
|
||||||
|
|
Loading…
Add table
Reference in a new issue