diff options
author | Simon Josefsson <simon@josefsson.org> | 2010-12-06 17:43:22 +0100 |
---|---|---|
committer | Simon Josefsson <simon@josefsson.org> | 2010-12-06 17:43:22 +0100 |
commit | d351b57be6fafe475b9819aa242c9f82902eb2f1 (patch) | |
tree | 6c2428705479e5ed8baa9505262e7d2ef809cec5 /tests/Makefile.am | |
parent | cf6c4126847d5e7a8c1cb95e72a0afb9dfe1b7cf (diff) | |
download | gnutls-d351b57be6fafe475b9819aa242c9f82902eb2f1.tar.gz |
Don't fail on 'make distcheck'.
Diffstat (limited to 'tests/Makefile.am')
-rw-r--r-- | tests/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index 83f942604a..1f10d23944 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -98,4 +98,4 @@ TESTS_ENVIRONMENT = \ $(VALGRIND) check-local: - [ -d suite ] && $(MAKE) -C suite check + if test -d suite; then $(MAKE) -C suite check; fi |