]> git.ipfire.org Git - thirdparty/nettle.git/commitdiff
Use set -e, when looping in the check-fat target.
authorNiels Möller <nisse@lysator.liu.se>
Thu, 30 Jul 2020 07:33:48 +0000 (09:33 +0200)
committerNiels Möller <nisse@lysator.liu.se>
Thu, 30 Jul 2020 07:33:48 +0000 (09:33 +0200)
Makefile.in

index 0eddab71a11d579461e23559ab5e5a52ea151251..c73a9e0d12154df308c3149af716906d8336f875 100644 (file)
@@ -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