From: Niels Möller Date: Thu, 30 Jul 2020 07:33:48 +0000 (+0200) Subject: Use set -e, when looping in the check-fat target. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7664ae667613b763d522751ac01536cd33543447;p=thirdparty%2Fnettle.git Use set -e, when looping in the check-fat target. --- diff --git a/Makefile.in b/Makefile.in index 0eddab71..c73a9e0d 100644 --- a/Makefile.in +++ b/Makefile.in @@ -62,7 +62,7 @@ check-here: # test machine. check-fat: [ -z "$(FAT_TEST_LIST)" ] || \ - cd testsuite && for f in $(FAT_TEST_LIST) ; do \ + set -e; cd testsuite && for f in $(FAT_TEST_LIST) ; do \ echo NETTLE_FAT_OVERRIDE=$$f ; \ NETTLE_FAT_OVERRIDE=$$f $(MAKE) check ; \ done