summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Biebl <biebl@debian.org>2010-02-25 04:41:05 +0100
committerMichael Biebl <biebl@debian.org>2010-02-25 04:41:05 +0100
commit700a3ad087290517aa5465019d656e181342b4d2 (patch)
tree31587056a2324aa1173ca7665b8577d3ac489307
parentfb4a38101644edc6097322bc9061f15ba5a2cc44 (diff)
downloadtracker-700a3ad087290517aa5465019d656e181342b4d2.tar.gz
hal is only used for ac detection, so don't link against hal-storage
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 11043776d..8289c3238 100644
--- a/configure.ac
+++ b/configure.ac
@@ -411,7 +411,7 @@ AC_ARG_ENABLE(hal,
if test "x$enable_hal" != "xno"; then
PKG_CHECK_MODULES(HAL,
- [hal >= $HAL_REQUIRED hal-storage],
+ [hal >= $HAL_REQUIRED],
[have_hal=yes] ,
[have_hal=no])
AC_SUBST(HAL_CFLAGS)
@@ -426,7 +426,7 @@ fi
if test "x$enable_hal" = "xyes"; then
if test "x$have_hal" != "xyes"; then
- AC_MSG_ERROR([Couldn't find hal >= $HAL_REQUIRED and hal-storage.])
+ AC_MSG_ERROR([Couldn't find hal >= $HAL_REQUIRED.])
fi
fi