From 49d1a4ad4dab2cf8298668459d30d73374ec1e86 Mon Sep 17 00:00:00 2001 From: Lucas De Marchi Date: Thu, 20 Dec 2012 22:04:07 +0000 Subject: [PATCH] edbus codegen: fix check for eina + ecore This way we get a spurious line in configure, resulting in this message: /home/lucas/p/edbus/configure: line 14196: ecore: command not found SVN revision: 81495 --- legacy/edbus/configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/legacy/edbus/configure.ac b/legacy/edbus/configure.ac index 4b2c0382be..55c0524408 100644 --- a/legacy/edbus/configure.ac +++ b/legacy/edbus/configure.ac @@ -109,8 +109,8 @@ EFL_ENABLE_BIN([edbus-codegen], ["yes"]) if test "x${have_edbus_codegen}" = "xyes" ; then PKG_CHECK_MODULES([EDBUS_CODEGEN], - [eina >= 1.6.99], - [ecore >= 1.6.99], + [eina >= 1.6.99 + ecore >= 1.6.99], [have_edbus_codegen="yes"], [have_edbus_codegen="no"]) fi