logo

etc_portage

Unnamed repository; edit this file 'description' to name the repository. git clone https://hacktivis.me/git/etc_portage.git

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


  1. From af330123af933d829594ff32fac44e0217324350 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 2/8] CMakeLists.txt: Explain which variable is used to define
  5. a port if undefined
  6. ---
  7. CMakeLists.txt | 2 +-
  8. 1 file changed, 1 insertion(+), 1 deletion(-)
  9. diff --git a/CMakeLists.txt b/CMakeLists.txt
  10. index 9b5f7a78..6ead6bdc 100644
  11. --- a/CMakeLists.txt
  12. +++ b/CMakeLists.txt
  13. @@ -49,7 +49,7 @@ set(PORT "NOPORT" CACHE STRING "choose which WebKit port to build (one of ${ALL_
  14. list(FIND ALL_PORTS ${PORT} RET)
  15. if (${RET} EQUAL -1)
  16. - message(FATAL_ERROR "Please choose which WebKit port to build (one of ${ALL_PORTS})")
  17. + message(FATAL_ERROR "Please define a PORT to build with (one of ${ALL_PORTS})")
  18. endif ()
  19. string(TOLOWER ${PORT} WEBKIT_PORT_DIR)
  20. --
  21. 2.24.1