diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2006-03-24 14:11:20 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2006-03-24 14:11:20 +0000 |
commit | f0adebaf6ff10dffe13aae533b7b1a522cc10d4b (patch) | |
tree | 7b8e64c5760cb5c46de31cc06f70abe5029cd010 | |
parent | 2d826700faac96db4b36706571433c91c90a1219 (diff) |
don't go through check-torture if no check installed
Original commit message from CVS:
don't go through check-torture if no check installed
-rw-r--r-- | Makefile.am | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 35fd0a96..b3b507bd 100644 --- a/Makefile.am +++ b/Makefile.am @@ -45,8 +45,13 @@ include $(top_srcdir)/common/po.mak check-valgrind: cd tests/check && make check-valgrind +if HAVE_CHECK check-torture: cd tests/check && make torture +else +check-torture: + true +endif WIN32_COPY = \ $(top_builddir)/gst-libs/gst/*/*-enumtypes.[ch] \ |