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
|