Fix a typo (a missed replace)

svn path=/trunk/; revision=52234
This commit is contained in:
Jörg Mayer 2013-09-27 22:30:34 +00:00
parent 1306b0f349
commit 21bcd56a69
1 changed files with 2 additions and 2 deletions

View File

@ -15,8 +15,8 @@ function(FindWSWinLibs _WS_LIB_SEARCH_PATH _LIB_HINT_VAR)
set( _PROJECT_LIB_DIR "${_WS_BASE_DIR}/wireshark-${_WS_TARGET_PLATFORM}-libs" )
file( GLOB _SUBDIR "${_PROJECT_LIB_DIR}/*" )
foreach( _DIR ${_SUBDIR} )
if( IS_DIRECTORY ${dir} )
if( "${_DIR}" matches ".*/${_WS_LIB_SEARCH_PATH}" )
if( IS_DIRECTORY ${_DIR} )
if( "${_DIR}" MATCHES ".*/${_WS_LIB_SEARCH_PATH}" )
set( ${_LIB_HINT_VAR} ${_DIR} PARENT_SCOPE )
endif()
endif()