diff options
author | Sergey V. Udaltsov <svu@gnome.org> | 2011-04-05 23:26:14 +0100 |
---|---|---|
committer | Sergey V. Udaltsov <svu@gnome.org> | 2011-04-05 23:26:14 +0100 |
commit | 4e2cb01ad0ef957a18d684ba225d672d1b6a3bb8 (patch) | |
tree | d13845e159e4557d91310fe3fcfab13e98460f64 | |
parent | 161cb4ffe01ea2bf8d94a4c3f5e21dc279dacf00 (diff) |
bashism eliminated
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 13911c3..d045efd 100644 --- a/configure.in +++ b/configure.in @@ -37,7 +37,7 @@ AC_ARG_ENABLE( runtime-deps, if test "x$enable_runtime_deps" = "xyes"; then PKG_CHECK_MODULES(DEPS, [xproto >= 7.0.20] [x11 >= 1.4.3], [have_deps=yes], [have_deps=no]) - if test "x$have_deps" == "xno" ; then + if test "x$have_deps" = "xno" ; then AC_MSG_WARN([ Required dependencies not found. These dependencies are run-time dependencies only and not required for building. |