From 270f408a7be7f574048e0431f172e13140d88045 Mon Sep 17 00:00:00 2001 From: Philipp Tomsich Date: Sun, 18 Jun 2023 22:42:21 +0200 Subject: [PATCH] Makefile: fix type in check target The check target processes the output using grep; however, one of the patterns misspelled 'Segmenetation'. Fixing the typo. --- Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index 69f0405d..01d7baca 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)