diff options
author | Sergey V. Udaltsov <svu@gnome.org> | 2011-04-05 23:24:34 +0100 |
---|---|---|
committer | Sergey V. Udaltsov <svu@gnome.org> | 2011-04-05 23:24:34 +0100 |
commit | 161cb4ffe01ea2bf8d94a4c3f5e21dc279dacf00 (patch) | |
tree | e6b985e3232947c40292a9b636799f02460ad610 | |
parent | f272c002f4ef6a74b00a699e96c506e186666aad (diff) |
Fixed runtime deps checking
The condition was missing
-rw-r--r-- | configure.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 460138ed..13911c32 100644 --- a/configure.in +++ b/configure.in @@ -37,7 +37,8 @@ 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]) - AC_MSG_WARN([ + 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. Skip this check with --disable-runtime-deps. @@ -47,7 +48,8 @@ if test "x$enable_runtime_deps" = "xyes"; then keyboard layouts. ]) - AC_MSG_ERROR([$DEPS_PKG_ERRORS]) + AC_MSG_ERROR([$DEPS_PKG_ERRORS]) + fi fi AM_CONDITIONAL(CREATE_RULES_SYMLINK, test "x$xkb_rules_symlink" != "x") |