Fix CMake VC Redist message

The usage message was using the wrong variable

Change-Id: I5ca261240db49134f3d48a5e322d9272f8af7adf
Reviewed-on: https://code.wireshark.org/review/14865
Reviewed-by: Graham Bloice <graham.bloice@trihedral.com>
This commit is contained in:
Graham Bloice 2016-04-08 14:25:05 +01:00
parent 626d41ff1d
commit 434bbd67a0
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ find_program(VCREDIST_EXE "${_vcredist_name}"
)
if(VCREDIST_EXE)
file(TO_NATIVE_PATH "${VCREDIST_EXE}" VCREDIST_EXE)
message(STATUS "Using ${_vcredist_exe} for the installer")
message(STATUS "Using ${VCREDIST_EXE} for the installer")
endif()
if(NOT ENABLE_STATIC)