summaryrefslogtreecommitdiff
path: root/src/utilcode/dac
diff options
context:
space:
mode:
authorBen Boeckel <mathstuf@gmail.com>2015-02-04 11:34:34 -0500
committerBen Boeckel <mathstuf@gmail.com>2015-02-07 20:51:05 -0500
commit6f9408efe3bfe1fd8db54cb8537412d8bd95d969 (patch)
tree77c6199cdbe41eb9b8f10aca3bd4d65bb81f75e4 /src/utilcode/dac
parent1aefd69e9875d18829981663e6bf3ceca9c72ede (diff)
downloadcoreclr-6f9408efe3bfe1fd8db54cb8537412d8bd95d969.tar.gz
coreclr-6f9408efe3bfe1fd8db54cb8537412d8bd95d969.tar.bz2
coreclr-6f9408efe3bfe1fd8db54cb8537412d8bd95d969.zip
Remove excess arguments to endfunction() and else()
Arguments to else() are always confusing and endfunction only needs to match the first argument.
Diffstat (limited to 'src/utilcode/dac')
-rw-r--r--src/utilcode/dac/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utilcode/dac/CMakeLists.txt b/src/utilcode/dac/CMakeLists.txt
index d792c4ca57..ff6c48581a 100644
--- a/src/utilcode/dac/CMakeLists.txt
+++ b/src/utilcode/dac/CMakeLists.txt
@@ -4,7 +4,7 @@ include(${CLR_DIR}/dac.cmake)
if(CLR_CMAKE_PLATFORM_UNIX)
add_library(utilcode_dac STATIC ${UTILCODE_SOURCES})
add_dependencies(utilcode_dac CoreClrPal)
-else(CLR_CMAKE_PLATFORM_UNIX)
+else()
add_definitions(-DSELF_NO_HOST)
add_library(utilcode_dac STATIC ${UTILCODE_SOURCES} ../hostimpl.cpp)
endif(CLR_CMAKE_PLATFORM_UNIX) \ No newline at end of file