logo

etc_portage

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

0003-CMakeLists.txt-Explain-which-variable-is-used-to-def.patch (1136B)


  1. From 486a527f1391aeb2cd0fa40f7f1a1e180cd90abf Mon Sep 17 00:00:00 2001
  2. Message-Id: <486a527f1391aeb2cd0fa40f7f1a1e180cd90abf.1550728895.git.contact@hacktivis.me>
  3. In-Reply-To: <9c4baaec2f310d43011ec3835e0fbaf585ed583c.1550728895.git.contact@hacktivis.me>
  4. References: <9c4baaec2f310d43011ec3835e0fbaf585ed583c.1550728895.git.contact@hacktivis.me>
  5. From: "Haelwenn (lanodan) Monnier" <contact@hacktivis.me>
  6. Date: Tue, 6 Nov 2018 15:09:22 +0100
  7. Subject: [PATCH 3/6] CMakeLists.txt: Explain which variable is used to define
  8. a port if undefined
  9. ---
  10. CMakeLists.txt | 2 +-
  11. 1 file changed, 1 insertion(+), 1 deletion(-)
  12. diff --git a/CMakeLists.txt b/CMakeLists.txt
  13. index ae5c7b7613..39f398f8dd 100644
  14. --- a/CMakeLists.txt
  15. +++ b/CMakeLists.txt
  16. @@ -47,7 +47,7 @@ set(PORT "NOPORT" CACHE STRING "choose which WebKit port to build (one of ${ALL_
  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. string(TOLOWER ${PORT} WEBKIT_PORT_DIR)
  23. --
  24. 2.20.1