]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
.
authorJim Meyering <jim@meyering.net>
Sun, 20 Aug 2000 15:56:11 +0000 (15:56 +0000)
committerJim Meyering <jim@meyering.net>
Sun, 20 Aug 2000 15:56:11 +0000 (15:56 +0000)
tests/basename/Makefile.in
tests/date/Makefile.in
tests/factor/Makefile.in
tests/seq/Makefile.in
tests/stty/Makefile.in
tests/test/Makefile.in

index 794a1f2678794d0ab24224352bcccd4fcc8ec6c3..f8bd9ce0fe65b5c252949438379c864172932d52 100644 (file)
@@ -152,54 +152,57 @@ TAGS:
 check-TESTS: $(TESTS)
        @failed=0; all=0; xfail=0; xpass=0; \
        srcdir=$(srcdir); export srcdir; \
-       for tst in $(TESTS); do \
-         if test -f ./$$tst; then dir=./; \
-         elif test -f $$tst; then dir=; \
-         else dir="$(srcdir)/"; fi; \
-         if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \
-           all=`expr $$all + 1`; \
-           case " $(XFAIL_TESTS) " in \
-           *" $$tst "*) \
-             xpass=`expr $$xpass + 1`; \
-             failed=`expr $$failed + 1`; \
-             echo "XPASS: $$tst"; \
-           ;; \
-           *) \
-             echo "PASS: $$tst"; \
-           ;; \
-           esac; \
-         elif test $$? -ne 77; then \
-           all=`expr $$all + 1`; \
-           case " $(XFAIL_TESTS) " in \
-           *" $$tst "*) \
-             xfail=`expr $$xfail + 1`; \
-             echo "XFAIL: $$tst"; \
-           ;; \
-           *) \
-             failed=`expr $$failed + 1`; \
-             echo "FAIL: $$tst"; \
-           ;; \
-           esac; \
-         fi; \
-       done; \
-       if test "$$failed" -eq 0; then \
-         if test "$$xfail" -eq 0; then \
-           banner="All $$all tests passed"; \
-         else \
-           banner="All $$all tests behaved as expected ($$xfail expected failures)"; \
-         fi; \
-       else \
-         if test "$$xpass" -eq 0; then \
-           banner="$$failed of $$all tests failed"; \
+       list='$(TESTS)'; \
+       if test -n "$$list"; then \
+         for tst in $$list; do \
+           if test -f ./$$tst; then dir=./; \
+           elif test -f $$tst; then dir=; \
+           else dir="$(srcdir)/"; fi; \
+           if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \
+             all=`expr $$all + 1`; \
+             case " $(XFAIL_TESTS) " in \
+             *" $$tst "*) \
+               xpass=`expr $$xpass + 1`; \
+               failed=`expr $$failed + 1`; \
+               echo "XPASS: $$tst"; \
+             ;; \
+             *) \
+               echo "PASS: $$tst"; \
+             ;; \
+             esac; \
+           elif test $$? -ne 77; then \
+             all=`expr $$all + 1`; \
+             case " $(XFAIL_TESTS) " in \
+             *" $$tst "*) \
+               xfail=`expr $$xfail + 1`; \
+               echo "XFAIL: $$tst"; \
+             ;; \
+             *) \
+               failed=`expr $$failed + 1`; \
+               echo "FAIL: $$tst"; \
+             ;; \
+             esac; \
+           fi; \
+         done; \
+         if test "$$failed" -eq 0; then \
+           if test "$$xfail" -eq 0; then \
+             banner="All $$all tests passed"; \
+           else \
+             banner="All $$all tests behaved as expected ($$xfail expected failures)"; \
+           fi; \
          else \
-           banner="$$failed of $$all tests did not behave as expected ($$xpass unexpected passes)"; \
+           if test "$$xpass" -eq 0; then \
+             banner="$$failed of $$all tests failed"; \
+           else \
+             banner="$$failed of $$all tests did not behave as expected ($$xpass unexpected passes)"; \
+           fi; \
          fi; \
-       fi; \
-       dashes=`echo "$$banner" | sed s/./=/g`; \
-       echo "$$dashes"; \
-       echo "$$banner"; \
-       echo "$$dashes"; \
-       test "$$failed" -eq 0
+         dashes=`echo "$$banner" | sed s/./=/g`; \
+         echo "$$dashes"; \
+         echo "$$banner"; \
+         echo "$$dashes"; \
+         test "$$failed" -eq 0; \
+       fi
 
 distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
 
index bbf9e490e7ce23d6f7fae1da684a6c5c9474a01d..2e13434038a37fc5467c53e489955395aad515e8 100644 (file)
@@ -183,54 +183,57 @@ TAGS:
 check-TESTS: $(TESTS)
        @failed=0; all=0; xfail=0; xpass=0; \
        srcdir=$(srcdir); export srcdir; \
-       for tst in $(TESTS); do \
-         if test -f ./$$tst; then dir=./; \
-         elif test -f $$tst; then dir=; \
-         else dir="$(srcdir)/"; fi; \
-         if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \
-           all=`expr $$all + 1`; \
-           case " $(XFAIL_TESTS) " in \
-           *" $$tst "*) \
-             xpass=`expr $$xpass + 1`; \
-             failed=`expr $$failed + 1`; \
-             echo "XPASS: $$tst"; \
-           ;; \
-           *) \
-             echo "PASS: $$tst"; \
-           ;; \
-           esac; \
-         elif test $$? -ne 77; then \
-           all=`expr $$all + 1`; \
-           case " $(XFAIL_TESTS) " in \
-           *" $$tst "*) \
-             xfail=`expr $$xfail + 1`; \
-             echo "XFAIL: $$tst"; \
-           ;; \
-           *) \
-             failed=`expr $$failed + 1`; \
-             echo "FAIL: $$tst"; \
-           ;; \
-           esac; \
-         fi; \
-       done; \
-       if test "$$failed" -eq 0; then \
-         if test "$$xfail" -eq 0; then \
-           banner="All $$all tests passed"; \
-         else \
-           banner="All $$all tests behaved as expected ($$xfail expected failures)"; \
-         fi; \
-       else \
-         if test "$$xpass" -eq 0; then \
-           banner="$$failed of $$all tests failed"; \
+       list='$(TESTS)'; \
+       if test -n "$$list"; then \
+         for tst in $$list; do \
+           if test -f ./$$tst; then dir=./; \
+           elif test -f $$tst; then dir=; \
+           else dir="$(srcdir)/"; fi; \
+           if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \
+             all=`expr $$all + 1`; \
+             case " $(XFAIL_TESTS) " in \
+             *" $$tst "*) \
+               xpass=`expr $$xpass + 1`; \
+               failed=`expr $$failed + 1`; \
+               echo "XPASS: $$tst"; \
+             ;; \
+             *) \
+               echo "PASS: $$tst"; \
+             ;; \
+             esac; \
+           elif test $$? -ne 77; then \
+             all=`expr $$all + 1`; \
+             case " $(XFAIL_TESTS) " in \
+             *" $$tst "*) \
+               xfail=`expr $$xfail + 1`; \
+               echo "XFAIL: $$tst"; \
+             ;; \
+             *) \
+               failed=`expr $$failed + 1`; \
+               echo "FAIL: $$tst"; \
+             ;; \
+             esac; \
+           fi; \
+         done; \
+         if test "$$failed" -eq 0; then \
+           if test "$$xfail" -eq 0; then \
+             banner="All $$all tests passed"; \
+           else \
+             banner="All $$all tests behaved as expected ($$xfail expected failures)"; \
+           fi; \
          else \
-           banner="$$failed of $$all tests did not behave as expected ($$xpass unexpected passes)"; \
+           if test "$$xpass" -eq 0; then \
+             banner="$$failed of $$all tests failed"; \
+           else \
+             banner="$$failed of $$all tests did not behave as expected ($$xpass unexpected passes)"; \
+           fi; \
          fi; \
-       fi; \
-       dashes=`echo "$$banner" | sed s/./=/g`; \
-       echo "$$dashes"; \
-       echo "$$banner"; \
-       echo "$$dashes"; \
-       test "$$failed" -eq 0
+         dashes=`echo "$$banner" | sed s/./=/g`; \
+         echo "$$dashes"; \
+         echo "$$banner"; \
+         echo "$$dashes"; \
+         test "$$failed" -eq 0; \
+       fi
 
 distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
 
index e389e8b339b526ca18ed298c5cd82f932e8e3db1..05e6e44b45f3cd6e028940ca3778503da6f5dc79 100644 (file)
@@ -152,54 +152,57 @@ TAGS:
 check-TESTS: $(TESTS)
        @failed=0; all=0; xfail=0; xpass=0; \
        srcdir=$(srcdir); export srcdir; \
-       for tst in $(TESTS); do \
-         if test -f ./$$tst; then dir=./; \
-         elif test -f $$tst; then dir=; \
-         else dir="$(srcdir)/"; fi; \
-         if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \
-           all=`expr $$all + 1`; \
-           case " $(XFAIL_TESTS) " in \
-           *" $$tst "*) \
-             xpass=`expr $$xpass + 1`; \
-             failed=`expr $$failed + 1`; \
-             echo "XPASS: $$tst"; \
-           ;; \
-           *) \
-             echo "PASS: $$tst"; \
-           ;; \
-           esac; \
-         elif test $$? -ne 77; then \
-           all=`expr $$all + 1`; \
-           case " $(XFAIL_TESTS) " in \
-           *" $$tst "*) \
-             xfail=`expr $$xfail + 1`; \
-             echo "XFAIL: $$tst"; \
-           ;; \
-           *) \
-             failed=`expr $$failed + 1`; \
-             echo "FAIL: $$tst"; \
-           ;; \
-           esac; \
-         fi; \
-       done; \
-       if test "$$failed" -eq 0; then \
-         if test "$$xfail" -eq 0; then \
-           banner="All $$all tests passed"; \
-         else \
-           banner="All $$all tests behaved as expected ($$xfail expected failures)"; \
-         fi; \
-       else \
-         if test "$$xpass" -eq 0; then \
-           banner="$$failed of $$all tests failed"; \
+       list='$(TESTS)'; \
+       if test -n "$$list"; then \
+         for tst in $$list; do \
+           if test -f ./$$tst; then dir=./; \
+           elif test -f $$tst; then dir=; \
+           else dir="$(srcdir)/"; fi; \
+           if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \
+             all=`expr $$all + 1`; \
+             case " $(XFAIL_TESTS) " in \
+             *" $$tst "*) \
+               xpass=`expr $$xpass + 1`; \
+               failed=`expr $$failed + 1`; \
+               echo "XPASS: $$tst"; \
+             ;; \
+             *) \
+               echo "PASS: $$tst"; \
+             ;; \
+             esac; \
+           elif test $$? -ne 77; then \
+             all=`expr $$all + 1`; \
+             case " $(XFAIL_TESTS) " in \
+             *" $$tst "*) \
+               xfail=`expr $$xfail + 1`; \
+               echo "XFAIL: $$tst"; \
+             ;; \
+             *) \
+               failed=`expr $$failed + 1`; \
+               echo "FAIL: $$tst"; \
+             ;; \
+             esac; \
+           fi; \
+         done; \
+         if test "$$failed" -eq 0; then \
+           if test "$$xfail" -eq 0; then \
+             banner="All $$all tests passed"; \
+           else \
+             banner="All $$all tests behaved as expected ($$xfail expected failures)"; \
+           fi; \
          else \
-           banner="$$failed of $$all tests did not behave as expected ($$xpass unexpected passes)"; \
+           if test "$$xpass" -eq 0; then \
+             banner="$$failed of $$all tests failed"; \
+           else \
+             banner="$$failed of $$all tests did not behave as expected ($$xpass unexpected passes)"; \
+           fi; \
          fi; \
-       fi; \
-       dashes=`echo "$$banner" | sed s/./=/g`; \
-       echo "$$dashes"; \
-       echo "$$banner"; \
-       echo "$$dashes"; \
-       test "$$failed" -eq 0
+         dashes=`echo "$$banner" | sed s/./=/g`; \
+         echo "$$dashes"; \
+         echo "$$banner"; \
+         echo "$$dashes"; \
+         test "$$failed" -eq 0; \
+       fi
 
 distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
 
index e993223e2f89c000576d044581293ea8df5eaea7..e000f2cdc77352bf2d75403ba7a1407f08b67bba 100644 (file)
@@ -152,54 +152,57 @@ TAGS:
 check-TESTS: $(TESTS)
        @failed=0; all=0; xfail=0; xpass=0; \
        srcdir=$(srcdir); export srcdir; \
-       for tst in $(TESTS); do \
-         if test -f ./$$tst; then dir=./; \
-         elif test -f $$tst; then dir=; \
-         else dir="$(srcdir)/"; fi; \
-         if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \
-           all=`expr $$all + 1`; \
-           case " $(XFAIL_TESTS) " in \
-           *" $$tst "*) \
-             xpass=`expr $$xpass + 1`; \
-             failed=`expr $$failed + 1`; \
-             echo "XPASS: $$tst"; \
-           ;; \
-           *) \
-             echo "PASS: $$tst"; \
-           ;; \
-           esac; \
-         elif test $$? -ne 77; then \
-           all=`expr $$all + 1`; \
-           case " $(XFAIL_TESTS) " in \
-           *" $$tst "*) \
-             xfail=`expr $$xfail + 1`; \
-             echo "XFAIL: $$tst"; \
-           ;; \
-           *) \
-             failed=`expr $$failed + 1`; \
-             echo "FAIL: $$tst"; \
-           ;; \
-           esac; \
-         fi; \
-       done; \
-       if test "$$failed" -eq 0; then \
-         if test "$$xfail" -eq 0; then \
-           banner="All $$all tests passed"; \
-         else \
-           banner="All $$all tests behaved as expected ($$xfail expected failures)"; \
-         fi; \
-       else \
-         if test "$$xpass" -eq 0; then \
-           banner="$$failed of $$all tests failed"; \
+       list='$(TESTS)'; \
+       if test -n "$$list"; then \
+         for tst in $$list; do \
+           if test -f ./$$tst; then dir=./; \
+           elif test -f $$tst; then dir=; \
+           else dir="$(srcdir)/"; fi; \
+           if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \
+             all=`expr $$all + 1`; \
+             case " $(XFAIL_TESTS) " in \
+             *" $$tst "*) \
+               xpass=`expr $$xpass + 1`; \
+               failed=`expr $$failed + 1`; \
+               echo "XPASS: $$tst"; \
+             ;; \
+             *) \
+               echo "PASS: $$tst"; \
+             ;; \
+             esac; \
+           elif test $$? -ne 77; then \
+             all=`expr $$all + 1`; \
+             case " $(XFAIL_TESTS) " in \
+             *" $$tst "*) \
+               xfail=`expr $$xfail + 1`; \
+               echo "XFAIL: $$tst"; \
+             ;; \
+             *) \
+               failed=`expr $$failed + 1`; \
+               echo "FAIL: $$tst"; \
+             ;; \
+             esac; \
+           fi; \
+         done; \
+         if test "$$failed" -eq 0; then \
+           if test "$$xfail" -eq 0; then \
+             banner="All $$all tests passed"; \
+           else \
+             banner="All $$all tests behaved as expected ($$xfail expected failures)"; \
+           fi; \
          else \
-           banner="$$failed of $$all tests did not behave as expected ($$xpass unexpected passes)"; \
+           if test "$$xpass" -eq 0; then \
+             banner="$$failed of $$all tests failed"; \
+           else \
+             banner="$$failed of $$all tests did not behave as expected ($$xpass unexpected passes)"; \
+           fi; \
          fi; \
-       fi; \
-       dashes=`echo "$$banner" | sed s/./=/g`; \
-       echo "$$dashes"; \
-       echo "$$banner"; \
-       echo "$$dashes"; \
-       test "$$failed" -eq 0
+         dashes=`echo "$$banner" | sed s/./=/g`; \
+         echo "$$dashes"; \
+         echo "$$banner"; \
+         echo "$$dashes"; \
+         test "$$failed" -eq 0; \
+       fi
 
 distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
 
index 6c1d8b39879f5712cdf177429754311a06703d63..4d6dcf1e888959295cdddf819f78c6b3f084d8b9 100644 (file)
@@ -146,54 +146,57 @@ TAGS:
 check-TESTS: $(TESTS)
        @failed=0; all=0; xfail=0; xpass=0; \
        srcdir=$(srcdir); export srcdir; \
-       for tst in $(TESTS); do \
-         if test -f ./$$tst; then dir=./; \
-         elif test -f $$tst; then dir=; \
-         else dir="$(srcdir)/"; fi; \
-         if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \
-           all=`expr $$all + 1`; \
-           case " $(XFAIL_TESTS) " in \
-           *" $$tst "*) \
-             xpass=`expr $$xpass + 1`; \
-             failed=`expr $$failed + 1`; \
-             echo "XPASS: $$tst"; \
-           ;; \
-           *) \
-             echo "PASS: $$tst"; \
-           ;; \
-           esac; \
-         elif test $$? -ne 77; then \
-           all=`expr $$all + 1`; \
-           case " $(XFAIL_TESTS) " in \
-           *" $$tst "*) \
-             xfail=`expr $$xfail + 1`; \
-             echo "XFAIL: $$tst"; \
-           ;; \
-           *) \
-             failed=`expr $$failed + 1`; \
-             echo "FAIL: $$tst"; \
-           ;; \
-           esac; \
-         fi; \
-       done; \
-       if test "$$failed" -eq 0; then \
-         if test "$$xfail" -eq 0; then \
-           banner="All $$all tests passed"; \
-         else \
-           banner="All $$all tests behaved as expected ($$xfail expected failures)"; \
-         fi; \
-       else \
-         if test "$$xpass" -eq 0; then \
-           banner="$$failed of $$all tests failed"; \
+       list='$(TESTS)'; \
+       if test -n "$$list"; then \
+         for tst in $$list; do \
+           if test -f ./$$tst; then dir=./; \
+           elif test -f $$tst; then dir=; \
+           else dir="$(srcdir)/"; fi; \
+           if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \
+             all=`expr $$all + 1`; \
+             case " $(XFAIL_TESTS) " in \
+             *" $$tst "*) \
+               xpass=`expr $$xpass + 1`; \
+               failed=`expr $$failed + 1`; \
+               echo "XPASS: $$tst"; \
+             ;; \
+             *) \
+               echo "PASS: $$tst"; \
+             ;; \
+             esac; \
+           elif test $$? -ne 77; then \
+             all=`expr $$all + 1`; \
+             case " $(XFAIL_TESTS) " in \
+             *" $$tst "*) \
+               xfail=`expr $$xfail + 1`; \
+               echo "XFAIL: $$tst"; \
+             ;; \
+             *) \
+               failed=`expr $$failed + 1`; \
+               echo "FAIL: $$tst"; \
+             ;; \
+             esac; \
+           fi; \
+         done; \
+         if test "$$failed" -eq 0; then \
+           if test "$$xfail" -eq 0; then \
+             banner="All $$all tests passed"; \
+           else \
+             banner="All $$all tests behaved as expected ($$xfail expected failures)"; \
+           fi; \
          else \
-           banner="$$failed of $$all tests did not behave as expected ($$xpass unexpected passes)"; \
+           if test "$$xpass" -eq 0; then \
+             banner="$$failed of $$all tests failed"; \
+           else \
+             banner="$$failed of $$all tests did not behave as expected ($$xpass unexpected passes)"; \
+           fi; \
          fi; \
-       fi; \
-       dashes=`echo "$$banner" | sed s/./=/g`; \
-       echo "$$dashes"; \
-       echo "$$banner"; \
-       echo "$$dashes"; \
-       test "$$failed" -eq 0
+         dashes=`echo "$$banner" | sed s/./=/g`; \
+         echo "$$dashes"; \
+         echo "$$banner"; \
+         echo "$$dashes"; \
+         test "$$failed" -eq 0; \
+       fi
 
 distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
 
index ca9427ba79cdbd70c0eab4512e29711e7b208a3a..e287db280c91724c1a8036dae0619c47b85add1a 100644 (file)
@@ -197,54 +197,57 @@ TAGS:
 check-TESTS: $(TESTS)
        @failed=0; all=0; xfail=0; xpass=0; \
        srcdir=$(srcdir); export srcdir; \
-       for tst in $(TESTS); do \
-         if test -f ./$$tst; then dir=./; \
-         elif test -f $$tst; then dir=; \
-         else dir="$(srcdir)/"; fi; \
-         if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \
-           all=`expr $$all + 1`; \
-           case " $(XFAIL_TESTS) " in \
-           *" $$tst "*) \
-             xpass=`expr $$xpass + 1`; \
-             failed=`expr $$failed + 1`; \
-             echo "XPASS: $$tst"; \
-           ;; \
-           *) \
-             echo "PASS: $$tst"; \
-           ;; \
-           esac; \
-         elif test $$? -ne 77; then \
-           all=`expr $$all + 1`; \
-           case " $(XFAIL_TESTS) " in \
-           *" $$tst "*) \
-             xfail=`expr $$xfail + 1`; \
-             echo "XFAIL: $$tst"; \
-           ;; \
-           *) \
-             failed=`expr $$failed + 1`; \
-             echo "FAIL: $$tst"; \
-           ;; \
-           esac; \
-         fi; \
-       done; \
-       if test "$$failed" -eq 0; then \
-         if test "$$xfail" -eq 0; then \
-           banner="All $$all tests passed"; \
-         else \
-           banner="All $$all tests behaved as expected ($$xfail expected failures)"; \
-         fi; \
-       else \
-         if test "$$xpass" -eq 0; then \
-           banner="$$failed of $$all tests failed"; \
+       list='$(TESTS)'; \
+       if test -n "$$list"; then \
+         for tst in $$list; do \
+           if test -f ./$$tst; then dir=./; \
+           elif test -f $$tst; then dir=; \
+           else dir="$(srcdir)/"; fi; \
+           if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \
+             all=`expr $$all + 1`; \
+             case " $(XFAIL_TESTS) " in \
+             *" $$tst "*) \
+               xpass=`expr $$xpass + 1`; \
+               failed=`expr $$failed + 1`; \
+               echo "XPASS: $$tst"; \
+             ;; \
+             *) \
+               echo "PASS: $$tst"; \
+             ;; \
+             esac; \
+           elif test $$? -ne 77; then \
+             all=`expr $$all + 1`; \
+             case " $(XFAIL_TESTS) " in \
+             *" $$tst "*) \
+               xfail=`expr $$xfail + 1`; \
+               echo "XFAIL: $$tst"; \
+             ;; \
+             *) \
+               failed=`expr $$failed + 1`; \
+               echo "FAIL: $$tst"; \
+             ;; \
+             esac; \
+           fi; \
+         done; \
+         if test "$$failed" -eq 0; then \
+           if test "$$xfail" -eq 0; then \
+             banner="All $$all tests passed"; \
+           else \
+             banner="All $$all tests behaved as expected ($$xfail expected failures)"; \
+           fi; \
          else \
-           banner="$$failed of $$all tests did not behave as expected ($$xpass unexpected passes)"; \
+           if test "$$xpass" -eq 0; then \
+             banner="$$failed of $$all tests failed"; \
+           else \
+             banner="$$failed of $$all tests did not behave as expected ($$xpass unexpected passes)"; \
+           fi; \
          fi; \
-       fi; \
-       dashes=`echo "$$banner" | sed s/./=/g`; \
-       echo "$$dashes"; \
-       echo "$$banner"; \
-       echo "$$dashes"; \
-       test "$$failed" -eq 0
+         dashes=`echo "$$banner" | sed s/./=/g`; \
+         echo "$$dashes"; \
+         echo "$$banner"; \
+         echo "$$dashes"; \
+         test "$$failed" -eq 0; \
+       fi
 
 distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)