From: Benoit Neil Date: Wed, 8 Apr 2009 20:29:50 +0000 (+0000) Subject: Added newline ad the end of generated hugehelp.c (the "default" one, when it hasn... X-Git-Tag: upstream/7.37.1~6444 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=55d0c29f4a067bff5eab6a1417335abde8693b11;p=platform%2Fupstream%2Fcurl.git Added newline ad the end of generated hugehelp.c (the "default" one, when it hasn't been generated before). --- diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 8688e56..e636eb1 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -5,7 +5,7 @@ SET(EXE_NAME curl) FIND_FILE(HUGEHELP_C_FILE hugehelp.c PATHS . NO_DEFAULT_PATH) IF (NOT HUGEHELP_C_FILE) MESSAGE(STATUS "Warning: hugehelp.c file was not generated before. Generating an 'empty' file...") - FILE(WRITE hugehelp.c "/* built-in manual is disabled, blank function */\n#include \"hugehelp.h\"\nvoid hugehelp(void) {}") + FILE(WRITE hugehelp.c "/* built-in manual is disabled, blank function */\n#include \"hugehelp.h\"\nvoid hugehelp(void) {}\n\n") ENDIF() TRANSFORM_MAKEFILE_INC("Makefile.inc" "${CMAKE_CURRENT_BINARY_DIR}/Makefile.inc.cmake")