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:34:23 +0100 |
commit | 670e6967ab1c41d2fb0bed2d5b7092d5b2ed42a1 (patch) | |
tree | 2128f508ce6344121670b4c9e09d3c327bc72608 | |
parent | 764f32e0d779fcb7c367b442db76e515006d6a30 (diff) |
bashism eliminated
(cherry picked from commit 4e2cb01ad0ef957a18d684ba225d672d1b6a3bb8)
-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. |