Browse Source

Makefile: fix type in check target

The check target processes the output using grep; however, one of the
patterns misspelled 'Segmenetation'.  Fixing the typo.
pull/1386/head
Philipp Tomsich 3 years ago
parent
commit
270f408a7b
  1. 2
      Makefile.in

2
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)

Loading…
Cancel
Save