From 5d9f91293021c0c04e878cb0d3052b5a65809a6e Mon Sep 17 00:00:00 2001 From: Remy Marquis Date: Sat, 1 Jul 2017 20:22:22 +0200 Subject: [PATCH] libs: temporary workaround for missing Perl on Windows See * https://github.com/curl/curl/pull/1421 * https://github.com/curl/curl/issues/1565 * https://github.com/curl/curl/pull/1568 --- curl/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curl/CMakeLists.txt b/curl/CMakeLists.txt index d2e1c2bb..cb2cef44 100644 --- a/curl/CMakeLists.txt +++ b/curl/CMakeLists.txt @@ -225,7 +225,7 @@ if(ENABLE_MANUAL) endif() endif() # Required for building manual, docs, tests -find_package(Perl REQUIRED) +find_package(Perl) # We need ansi c-flags, especially on HP set(CMAKE_C_FLAGS "${CMAKE_ANSI_CFLAGS} ${CMAKE_C_FLAGS}")