diff options
author | Andreas Henriksson <andreas@fatal.se> | 2010-05-25 15:55:00 +0200 |
---|---|---|
committer | Andreas Henriksson <andreas@fatal.se> | 2010-05-25 15:55:00 +0200 |
commit | f2e5a2c33a407ec44c033edbe58780ca0148ac70 (patch) | |
tree | ad78c9fc7cd90a2afb65569dd16648b22219f733 | |
parent | 9ed1451eb71d1bd5ce1301a8437bc9dbe7e857db (diff) | |
download | gvfs-f2e5a2c33a407ec44c033edbe58780ca0148ac70.tar.gz |
Fix bashism in configure.ac
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 1fdbbd28..816c6b18 100644 --- a/configure.ac +++ b/configure.ac @@ -242,7 +242,7 @@ GDU_REQUIRED=2.29.0 if test "x$enable_gdu" != "xno"; then PKG_CHECK_EXISTS([gdu >= $GDU_REQUIRED], msg_gdu=yes) - if test "x$msg_gdu" == "xyes"; then + if test "x$msg_gdu" = "xyes"; then PKG_CHECK_MODULES([GDU],[gdu >= $GDU_REQUIRED]) AC_DEFINE(HAVE_GDU, 1, [Define to 1 if gnome-disk-utility is available]) fi |