aboutsummaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorPhilipp Tomsich <philipp.tomsich@vrull.eu>2023-06-18 22:42:21 +0200
committerPhilipp Tomsich <philipp.tomsich@vrull.eu>2023-06-18 22:42:25 +0200
commit270f408a7be7f574048e0431f172e13140d88045 (patch)
tree6f45ea224e1c3b1993599fd5d64d8d12c1c359ce /Makefile.in
parent7e50839c76dcb36cc28df04a1b6dd854d6af1a12 (diff)
downloadriscv-isa-sim-270f408a7be7f574048e0431f172e13140d88045.zip
riscv-isa-sim-270f408a7be7f574048e0431f172e13140d88045.tar.gz
riscv-isa-sim-270f408a7be7f574048e0431f172e13140d88045.tar.bz2
Makefile: fix type in check target
The check target processes the output using grep; however, one of the patterns misspelled 'Segmenetation'. Fixing the typo.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index 69f0405..01d7bac 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -319,7 +319,7 @@ $(2)_junk += \
all-$(1) : lib$(1).a $$($(2)_install_prog_exes)
check-$(1) : $$($(2)_test_outs)
- echo; grep -h -e'Unit Tests' -e'FAILED' -e'Segementation' $$^; echo
+ echo; grep -h -e'Unit Tests' -e'FAILED' -e'Segmentation' $$^; echo
clean-$(1) :
rm -rf $$($(2)_junk)