File: 040_lv_analyzer_build_fix.patch

package info (click to toggle)
libvisual-plugins 1%3A0.4.0%2Bdfsg1-13
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 3,644 kB
  • sloc: ansic: 9,358; sh: 8,809; cpp: 871; makefile: 221; sed: 16
file content (16 lines) | stat: -rw-r--r-- 552 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Description: fixes configure so that lv_analyzer actually gets built.
Author: David Leverton
Last-Update: 2007-10-10
Index: libvisual-plugins/configure.ac
===================================================================
--- libvisual-plugins.orig/configure.ac
+++ libvisual-plugins/configure.ac
@@ -361,7 +361,7 @@ AC_ARG_ENABLE([analyzer],
   [ENABLE_ANALYZER=$enableval],
   [ENABLE_ANALYZER=yes])
 
-if test "$ENABLE_ANALYZER" = xyes; then
+if test "$ENABLE_ANALYZER" = "yes"; then
   build_actor_plugins="$build_actor_plugins lv_analyzer"
 fi