aboutsummaryrefslogtreecommitdiff
path: root/cmake/install.cmake
diff options
context:
space:
mode:
authorJeff Merver <jeff@castar.com>2016-05-21 16:01:32 -0700
committerJeff Merver <jeff@castar.com>2016-05-21 16:01:32 -0700
commit733ef986e57064d63c7933662865ded31c9c9bd9 (patch)
tree6a2505cd1321904e2c12790eda984cb0b01478b9 /cmake/install.cmake
parent594ce567ab8a0fd77604ae4a1748cc4f88a24cdf (diff)
downloadprotobuf-733ef986e57064d63c7933662865ded31c9c9bd9.tar.gz
protobuf-733ef986e57064d63c7933662865ded31c9c9bd9.tar.bz2
protobuf-733ef986e57064d63c7933662865ded31c9c9bd9.zip
added missing closing bracket for _cmakedir_desc in cmake/install.cmake line 88
Diffstat (limited to 'cmake/install.cmake')
-rw-r--r--cmake/install.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/install.cmake b/cmake/install.cmake
index 4d099558..6e3d41a1 100644
--- a/cmake/install.cmake
+++ b/cmake/install.cmake
@@ -85,7 +85,7 @@ endforeach()
# Export configuration
set(_cmakedir_desc "Directory relative to CMAKE_INSTALL to install the cmake configuration files")
if(NOT MSVC)
- set(CMAKE_INSTALL_CMAKEDIR "${CMAKE_INSTALL_LIBDIR}/cmake/protobuf" CACHE STRING "${_cmakedir_desc")
+ set(CMAKE_INSTALL_CMAKEDIR "${CMAKE_INSTALL_LIBDIR}/cmake/protobuf" CACHE STRING "${_cmakedir_desc}")
else()
set(CMAKE_INSTALL_CMAKEDIR "cmake" CACHE STRING "${_cmakedir_desc}")
endif()