aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2016-01-18 13:50:42 -0800
committerGerald Combs <gerald@wireshark.org>2016-01-19 00:08:51 +0000
commit441c6d4e9ccaaf3a9e8a6595d4abb53ec508a0e4 (patch)
tree7cec47f119611746ee27cb0af4c9e3fd42506a3a
parente42a262ca9015770bbab8524c575512d2323a81a (diff)
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 <gerald@wireshark.org> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Gerald Combs <gerald@wireshark.org>
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
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?