File: 0004-do-not-run-test-always.patch

package info (click to toggle)
vamp-plugin-sdk 2.10.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 2,696 kB
  • sloc: cpp: 7,551; ansic: 911; makefile: 338; sh: 170; perl: 31
file content (33 lines) | stat: -rw-r--r-- 1,030 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
--- a/Makefile.in
+++ b/Makefile.in
@@ -248,7 +248,7 @@
 
 rdfgen:		$(RDFGEN_TARGET)
 
-all:		sdk plugins host rdfgen test
+all:		sdk plugins host rdfgen
 
 $(SDK_STATIC):	$(SDK_OBJECTS) $(API_HEADERS) $(SDK_HEADERS)
 		$(AR) r $@ $(SDK_OBJECTS)
--- a/configure
+++ b/configure
@@ -4076,7 +4076,7 @@
 	have_sndfile="yes"
 fi
 	if test "x$have_sndfile" = "xyes" ; then
-				TARGETS="sdk plugins host rdfgen test"
+				TARGETS="sdk plugins host rdfgen"
 	else
 				as_fn_error $? "libsndfile not found - cannot build example Vamp host!
 If you don't want to build the host, configure with --disable-programs." "$LINENO" 5
--- a/configure.ac
+++ b/configure.ac
@@ -28,7 +28,7 @@
 	PKG_CHECK_MODULES([SNDFILE],[sndfile],have_sndfile="yes",have_sndfile="no")
 	if test "x$have_sndfile" = "xyes" ; then
 		dnl all good, build everything
-		TARGETS="sdk plugins host rdfgen test"
+		TARGETS="sdk plugins host rdfgen"
 	else
 		dnl no libsndfile - can't build host!
 		AC_MSG_ERROR([libsndfile not found - cannot build example Vamp host!