[banshee] configure: fix a variable comparison



commit 38850e49db4d2a9c87b0788cc1170815c6362039
Author: Andrés G. Aragoneses <knocte gmail com>
Date:   Tue Oct 15 12:07:06 2013 +0200

    configure: fix a variable comparison
    
    This variable comparison was missing the "test" command, which would
    cause sometimes the annoying error "xno: command not found".

 configure.ac |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/configure.ac b/configure.ac
index 02cb201..2465c59 100644
--- a/configure.ac
+++ b/configure.ac
@@ -76,7 +76,7 @@ SHAMROCK_CHECK_MONO_2_0_GAC_ASSEMBLIES([
 
 dnl In MeeGo we want the full name, but not in GNOME 3 (see bgo#596242)
 PKG_CHECK_MODULES(MEEGO_PANEL, meego-panel, HAVE_MEEGO_PANEL=yes, HAVE_MEEGO_PANEL=no)
-if "x$HAVE_MEEGO_PANEL" = "xyes"; then
+if test "x$HAVE_MEEGO_PANEL" = "xyes"; then
        BANSHEE_DESKTOP_NAME="_Name=Banshee Media Player"
 else
        BANSHEE_DESKTOP_NAME="_Name=Banshee"


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]