From 10f504db61f6400e37c8b5b878ee5d846d082bdb Mon Sep 17 00:00:00 2001 From: Carpentier Pierre-Francois Date: Thu, 22 Dec 2016 10:30:07 +0100 Subject: [PATCH] remove __DATE__ in civetweb.c too remove it as it causes fatal warning on non-reproducible build --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d7d4ec5..12e66d0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -39,7 +39,7 @@ endif() if(BUNDLE_CIVETWEB) ExternalProject_Add( civetweb GIT_REPOSITORY https://github.com/kakwa/civetweb - PATCH_COMMAND sed -i s/__DATE__/"110973"/ src/main.c + PATCH_COMMAND sed -i s/__DATE__/"110973"/ src/main.c src/civetweb.c INSTALL_DIR /usr/local CMAKE_ARGS .. -DCMAKE_INSTALL_PREFIX=/usr -DCIVETWEB_DISABLE_CGI=ON