aboutsummaryrefslogtreecommitdiffstats
path: root/cmake
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2014-08-01 12:29:12 -0700
committerGerald Combs <gerald@wireshark.org>2014-08-01 19:29:59 +0000
commite70251e8cbd70bf93e081c3fb40b78e8deb870dd (patch)
tree3de316c0c179156ac4d5b03d3b6edaaad740c270 /cmake
parentc93297c750b99ac487f1f787896959ca43f64c72 (diff)
Fix comparison.
Change-Id: If2af35c8a49f405bee70eb144e26e539a7dc61f2 Reviewed-on: https://code.wireshark.org/review/3335 Reviewed-by: Gerald Combs <gerald@wireshark.org>
Diffstat (limited to 'cmake')
-rw-r--r--cmake/modules/FindPCAP.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/modules/FindPCAP.cmake b/cmake/modules/FindPCAP.cmake
index 3514a9ffc7..2370466e58 100644
--- a/cmake/modules/FindPCAP.cmake
+++ b/cmake/modules/FindPCAP.cmake
@@ -11,7 +11,7 @@ FindWSWinLibs( "WpdPack" "PCAP_HINTS" )
# The 64-bit wpcap.lib is under /x64
set ( _PLATFORM_SUBDIR "" )
-if( WIN32 AND $ENV{WIRESHARK_TARGET_PLATFORM} MATCHES "64" )
+if( WIN32 AND "$ENV{WIRESHARK_TARGET_PLATFORM}" MATCHES "64" )
set ( _PLATFORM_SUBDIR "/x64" )
endif()