From 441c6d4e9ccaaf3a9e8a6595d4abb53ec508a0e4 Mon Sep 17 00:00:00 2001 From: Gerald Combs Date: Mon, 18 Jan 2016 13:50:42 -0800 Subject: [PATCH] CMake: Fix an endif. Fix CMake Warning (dev) in CMakeLists.txt: A logical block opening on the line C:/Development/wireshark-w64/CMakeLists.txt:1649 (if) closes on the line C:/Development/wireshark-w64/CMakeLists.txt:1668 (endif) with mis-matching arguments. This warning is for project developers. Use -Wno-dev to suppress it. Change-Id: I6b6060e4d88b385deb81111234e3229d104772f1 Reviewed-on: https://code.wireshark.org/review/13407 Petri-Dish: Gerald Combs Tested-by: Petri Dish Buildbot Reviewed-by: Gerald Combs --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ad34750784..7d4facf295 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1665,7 +1665,7 @@ if(LUA_FOUND AND ENABLE_LUA) "${_lua_file}" ) endforeach() -endif(LUA_FOUND) +endif(LUA_FOUND AND ENABLE_LUA) # doc/*.html handled elsewhere. # TODO shouldn't this use full (relative) paths instead of glob patterns?