summaryrefslogtreecommitdiffstats
path: root/src/account
diff options
context:
space:
mode:
authorTomas Bzatek <tbzatek@redhat.com>2013-11-06 17:54:55 +0100
committerTomas Bzatek <tbzatek@redhat.com>2013-11-06 17:54:55 +0100
commit634e88d0c777ad7064946f617ae311d02791b1e6 (patch)
tree3660a67283ab85fe97db4c78de70398fb282baa9 /src/account
parent352985f9a617b61fbe879e38f72663b6b7771450 (diff)
downloadopenlmi-providers-634e88d0c777ad7064946f617ae311d02791b1e6.tar.gz
openlmi-providers-634e88d0c777ad7064946f617ae311d02791b1e6.tar.xz
openlmi-providers-634e88d0c777ad7064946f617ae311d02791b1e6.zip
Fix libuser require once again
CMake doesn't like spaces around version requirements in pkg-config checks. Unfortunately also maintains configure cache and doesn't pick the changes in CMakeLists.txt up automatically so my typo went unspotted during testing. Damn.
Diffstat (limited to 'src/account')
-rw-r--r--src/account/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/account/CMakeLists.txt b/src/account/CMakeLists.txt
index 0fdba1f..83ca474 100644
--- a/src/account/CMakeLists.txt
+++ b/src/account/CMakeLists.txt
@@ -42,7 +42,7 @@ set(TARGET_MOF "${CMAKE_BINARY_DIR}/mof/90_LMI_Account_Profile.mof")
profile_mof_generate("90_LMI_Account_Profile.mof.skel" "${TARGET_MOF}" "${CIM_PROVIDERS_CLASSES}")
# Require libuser
-pkg_check_modules(LIBUSER REQUIRED libuser >= 0.60)
+pkg_check_modules(LIBUSER REQUIRED libuser>=0.60)
include_directories(${CMAKE_CURRENT_BINARY_DIR} ${CMPI_INCLUDE_DIR} ${GLIB_INCLUDE_DIRS} ${LIBUSER_INCLUDE_DIRS} ${CMAKE_SOURCE_DIR}/src/indmanager)