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>
This commit is contained in:
Gerald Combs 2016-01-18 13:50:42 -08:00
parent e42a262ca9
commit 441c6d4e9c
1 changed files with 1 additions and 1 deletions

View File

@ -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?