diff options
author | Florent Le Coz <louiz@louiz.org> | 2015-01-10 04:19:33 +0100 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2015-01-10 04:19:33 +0100 |
commit | 0ee47f628d7b34f285264cde06ff01a5b27e0ace (patch) | |
tree | a1aa5665efca9159be1415131c99798f46ba3b97 | |
parent | f4fb961df5d751dfcbd10b297bb4eaaf8096ce34 (diff) | |
download | biboumi-0ee47f628d7b34f285264cde06ff01a5b27e0ace.tar.gz biboumi-0ee47f628d7b34f285264cde06ff01a5b27e0ace.tar.bz2 biboumi-0ee47f628d7b34f285264cde06ff01a5b27e0ace.tar.xz biboumi-0ee47f628d7b34f285264cde06ff01a5b27e0ace.zip |
Fix the cmake LIBUUID_INCLUDE_DIRS value when we are not using pkg-config
-rw-r--r-- | cmake/Modules/FindLIBUUID.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/Modules/FindLIBUUID.cmake b/cmake/Modules/FindLIBUUID.cmake index 25b330b..17d3c42 100644 --- a/cmake/Modules/FindLIBUUID.cmake +++ b/cmake/Modules/FindLIBUUID.cmake @@ -20,7 +20,7 @@ pkg_check_modules(LIBUUID uuid) if(NOT LIBUUID_FOUND) find_path(LIBUUID_INCLUDE_DIRS NAMES uuid.h - PATH uuid + PATH_SUFFIXES uuid DOC "The libuuid include directory") find_library(LIBUUID_LIBRARIES NAMES uuid |