logo

etc_portage

Unnamed repository; edit this file 'description' to name the repository.

0004-CMakeLists.txt-Explain-which-variable-is-used-to-def.patch (858B)


      1 From 5da0a39efade423c2ddd3460717b3d295ad69917 Mon Sep 17 00:00:00 2001
      2 From: "Haelwenn (lanodan) Monnier" <contact@hacktivis.me>
      3 Date: Tue, 6 Nov 2018 15:09:22 +0100
      4 Subject: [PATCH 4/9] CMakeLists.txt: Explain which variable is used to define
      5  a port if undefined
      6 
      7 ---
      8  CMakeLists.txt | 2 +-
      9  1 file changed, 1 insertion(+), 1 deletion(-)
     10 
     11 diff --git a/CMakeLists.txt b/CMakeLists.txt
     12 index cc3c732f..34b7de24 100644
     13 --- a/CMakeLists.txt
     14 +++ b/CMakeLists.txt
     15 @@ -48,7 +48,7 @@ set(PORT "NOPORT" CACHE STRING "choose which WebKit port to build (one of ${ALL_
     16  
     17  list(FIND ALL_PORTS ${PORT} RET)
     18  if (${RET} EQUAL -1)
     19 -    message(FATAL_ERROR "Please choose which WebKit port to build (one of ${ALL_PORTS})")
     20 +    message(FATAL_ERROR "Please define a PORT to build with (one of ${ALL_PORTS})")
     21  endif ()
     22  
     23  string(TOLOWER ${PORT} WEBKIT_PORT_DIR)
     24 -- 
     25 2.21.0
     26