From d25314c1cdea93112e519c1c59dfdf9cc9e11b86 Mon Sep 17 00:00:00 2001
From: Lukas Nellen <lukas@nucleares.unam.mx>
Date: Thu, 16 May 2019 18:08:26 -0500
Subject: [PATCH] Spell 'Perl' the way cmake expects

Mislead by case-insensitive FS on Mac?
---
 CMakeLists.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index dcca8cad..4253c0d0 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -79,7 +79,7 @@ endif ()
 
 # generate coverage report
 if (CMAKE_BUILD_TYPE STREQUAL Coverage)
-  # find_package(PERL REQUIRED) does not work on the runner
+  find_package (Perl REQUIRED)
   set (GCOV gcov CACHE STRING "gcov executable" FORCE)
   set (LCOV_BIN_DIR "${PROJECT_SOURCE_DIR}/ThirdParty/lcov/bin")
   # collect coverage data
-- 
GitLab