diff options
| author | Robert Schumacher <roschuma@microsoft.com> | 2018-04-17 16:15:21 -0700 |
|---|---|---|
| committer | Robert Schumacher <roschuma@microsoft.com> | 2018-04-19 10:40:06 -0700 |
| commit | 2b896d2a2224ab2eed23dd1bcb3558fc5230d7a8 (patch) | |
| tree | bb3a81b01e62540055d04537739647b45cd8c461 | |
| parent | a95fbce456feaa14fe67a875037da2a0c58d7a3f (diff) | |
| download | vcpkg-2b896d2a2224ab2eed23dd1bcb3558fc5230d7a8.tar.gz vcpkg-2b896d2a2224ab2eed23dd1bcb3558fc5230d7a8.zip | |
[libuuid] Install headers into correct subdirectory
| -rw-r--r-- | ports/libuuid/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | ports/libuuid/CONTROL | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ports/libuuid/CMakeLists.txt b/ports/libuuid/CMakeLists.txt index a4335f1a8..ff1edd0ef 100644 --- a/ports/libuuid/CMakeLists.txt +++ b/ports/libuuid/CMakeLists.txt @@ -24,7 +24,7 @@ add_executable(test_uuid test_uuid.c) target_link_libraries(test_uuid uuid)
if(CMAKE_BUILD_TYPE STREQUAL "Release")
- install(FILES uuid.h DESTINATION include)
+ install(FILES uuid.h DESTINATION include/uuid)
endif()
install(
diff --git a/ports/libuuid/CONTROL b/ports/libuuid/CONTROL index bfec975dd..04bfbe47b 100644 --- a/ports/libuuid/CONTROL +++ b/ports/libuuid/CONTROL @@ -1,3 +1,3 @@ Source: libuuid -Version: 1.0.3 +Version: 1.0.3-1 Description: Universally unique id library |
