[banshee] [build] Remove unnecessary bashism in moonlight.m4
- From: Bertrand Lorentz <blorentz src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [banshee] [build] Remove unnecessary bashism in moonlight.m4
- Date: Mon, 24 Aug 2009 21:43:03 +0000 (UTC)
commit b10b6e65e0d6ae3bc7fb5e1fd5515d05f85279f6
Author: Romain Tartière <romain blogreen org>
Date: Mon Aug 24 23:38:24 2009 +0200
[build] Remove unnecessary bashism in moonlight.m4
Another step towards fixing the build on FreeBSD (bgo#592587).
Signed-off-by: Bertrand Lorentz <bertrand lorentz gmail com>
build/m4/banshee/moonlight.m4 | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/build/m4/banshee/moonlight.m4 b/build/m4/banshee/moonlight.m4
index 38a7766..98e0c57 100644
--- a/build/m4/banshee/moonlight.m4
+++ b/build/m4/banshee/moonlight.m4
@@ -2,11 +2,11 @@ AC_DEFUN([BANSHEE_CHECK_MOONLIGHT],
[
AC_ARG_ENABLE(moonlight, AC_HELP_STRING([--enable-moonlight], [Enable Moonlight-enhanced effects [[default=auto]]]), , enable_moonlight="no")
- if test "x$enable_moonlight" == "xauto"; then
+ if test "x$enable_moonlight" = "xauto"; then
PKG_CHECK_EXISTS(gtksilver >= 0.8 silverdesktop >= 0.8, enable_moonlight="yes", enable_moonlight="no")
fi
- if test "x$enable_moonlight" == "xyes"; then
+ if test "x$enable_moonlight" = "xyes"; then
PKG_CHECK_MODULES(MOONLIGHT, gtksilver >= 0.8 silverdesktop >= 0.8)
AC_SUBST(MOONLIGHT_LIBS)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]