summaryrefslogtreecommitdiff
path: root/Modules/FindProtobuf.cmake
diff options
context:
space:
mode:
authorPhilip Lowman <philip@yhbt.com>2009-09-20 23:55:47 -0400
committerPhilip Lowman <philip@yhbt.com>2009-09-20 23:55:47 -0400
commita8f4d4c9ba1fdf1b60c86c72dc81f712a6d8f012 (patch)
tree9ecb126a9a181812227909db397f1a9a4ea296d2 /Modules/FindProtobuf.cmake
parenta927ea410f235071df552354b8a40ea379e6e00b (diff)
downloadcmake-a8f4d4c9ba1fdf1b60c86c72dc81f712a6d8f012.tar.gz
Fix glitch where we were accidently unsetting CMAKE_FIND_LIBRARY_PREFIXES
Diffstat (limited to 'Modules/FindProtobuf.cmake')
-rw-r--r--Modules/FindProtobuf.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/FindProtobuf.cmake b/Modules/FindProtobuf.cmake
index 1713400638..67d33e563a 100644
--- a/Modules/FindProtobuf.cmake
+++ b/Modules/FindProtobuf.cmake
@@ -98,7 +98,7 @@ mark_as_advanced(PROTOBUF_INCLUDE_DIR
# Restore original find library prefixes
if(WIN32)
- set(CMAKE_FIND_LIBRARY_PREFIXES ${PROTOBUF_ORIG_FIND_LIBRARY_PREFIXES})
+ set(CMAKE_FIND_LIBRARY_PREFIXES "${PROTOBUF_ORIG_FIND_LIBRARY_PREFIXES}")
endif()
include(FindPackageHandleStandardArgs)