Fix glitch where we were accidently unsetting CMAKE_FIND_LIBRARY_PREFIXES

This commit is contained in:
Philip Lowman 2009-09-20 23:55:47 -04:00
parent a927ea410f
commit a8f4d4c9ba
1 changed files with 1 additions and 1 deletions

View File

@ -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)