mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +00:00
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
This commit is contained in:
parent
2d826700fa
commit
f0adebaf6f
1 changed files with 5 additions and 0 deletions
|
@ -45,8 +45,13 @@ include $(top_srcdir)/common/po.mak
|
||||||
check-valgrind:
|
check-valgrind:
|
||||||
cd tests/check && make check-valgrind
|
cd tests/check && make check-valgrind
|
||||||
|
|
||||||
|
if HAVE_CHECK
|
||||||
check-torture:
|
check-torture:
|
||||||
cd tests/check && make torture
|
cd tests/check && make torture
|
||||||
|
else
|
||||||
|
check-torture:
|
||||||
|
true
|
||||||
|
endif
|
||||||
|
|
||||||
WIN32_COPY = \
|
WIN32_COPY = \
|
||||||
$(top_builddir)/gst-libs/gst/*/*-enumtypes.[ch] \
|
$(top_builddir)/gst-libs/gst/*/*-enumtypes.[ch] \
|
||||||
|
|
Loading…
Reference in a new issue