gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [gnurl] 137/205: cmake: fix build with cmake 2.8.12.2


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 137/205: cmake: fix build with cmake 2.8.12.2
Date: Thu, 20 Apr 2017 16:21:17 +0200

This is an automated email from the git hooks/post-receive script.

ng0 pushed a commit to annotated tag gnurl-7.54.0
in repository gnurl.

commit ec493dbda2323e055c8861503d533870a697ce73
Author: Peter Wu <address@hidden>
AuthorDate: Thu Mar 30 14:27:51 2017 +0200

    cmake: fix build with cmake 2.8.12.2
    
    For some reason, CMake 2.8.12.2 did not expand the list argument in a
    single DEPENDS argument. Remove the quotes, so it gets expanded into
    multiple arguments for add_custom_command and add_custom_target.
    
    Fixes https://github.com/curl/curl/issues/1370
    Closes #1372
---
 docs/cmdline-opts/CMakeLists.txt | 2 +-
 docs/libcurl/CMakeLists.txt      | 4 ++--
 docs/libcurl/opts/CMakeLists.txt | 4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/docs/cmdline-opts/CMakeLists.txt b/docs/cmdline-opts/CMakeLists.txt
index ccee4a142..5aa20dfdb 100644
--- a/docs/cmdline-opts/CMakeLists.txt
+++ b/docs/cmdline-opts/CMakeLists.txt
@@ -6,7 +6,7 @@ include("${CMAKE_CURRENT_BINARY_DIR}/Makefile.inc.cmake")
 
 add_custom_command(OUTPUT "${MANPAGE}"
   COMMAND "${PERL_EXECUTABLE}" "${CMAKE_CURRENT_SOURCE_DIR}/gen.pl" mainpage 
"${CMAKE_CURRENT_SOURCE_DIR}" > "${MANPAGE}"
-  DEPENDS "${DPAGES}" "${OTHERPAGES}"
+  DEPENDS ${DPAGES} ${OTHERPAGES}
   VERBATIM
 )
 add_custom_target(generate-curl.1 DEPENDS "${MANPAGE}")
diff --git a/docs/libcurl/CMakeLists.txt b/docs/libcurl/CMakeLists.txt
index bdbcad45f..0b32c5054 100644
--- a/docs/libcurl/CMakeLists.txt
+++ b/docs/libcurl/CMakeLists.txt
@@ -49,7 +49,7 @@ add_manual_pages(man_MANS)
 
 string(REPLACE ".3" ".html" HTMLPAGES "${man_MANS}")
 string(REPLACE ".3" ".pdf" PDFPAGES "${man_MANS}")
-add_custom_target(html DEPENDS "${HTMLPAGES}")
-add_custom_target(pdf DEPENDS "${PDFPAGES}")
+add_custom_target(html DEPENDS ${HTMLPAGES})
+add_custom_target(pdf DEPENDS ${PDFPAGES})
 
 add_subdirectory(opts)
diff --git a/docs/libcurl/opts/CMakeLists.txt b/docs/libcurl/opts/CMakeLists.txt
index 24c011180..709d3e4b8 100644
--- a/docs/libcurl/opts/CMakeLists.txt
+++ b/docs/libcurl/opts/CMakeLists.txt
@@ -6,7 +6,7 @@ add_manual_pages(man_MANS)
 
 string(REPLACE ".3" ".html" HTMLPAGES "${man_MANS}")
 string(REPLACE ".3" ".pdf" PDFPAGES "${man_MANS}")
-add_custom_target(opts-html DEPENDS "${HTMLPAGES}")
-add_custom_target(opts-pdf DEPENDS "${PDFPAGES}")
+add_custom_target(opts-html DEPENDS ${HTMLPAGES})
+add_custom_target(opts-pdf DEPENDS ${PDFPAGES})
 add_dependencies(html opts-html)
 add_dependencies(pdf opts-pdf)

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]