aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Brazhnikov <makc@FreeBSD.org>2024-04-09 08:58:41 +0000
committerMax Brazhnikov <makc@FreeBSD.org>2024-04-09 08:58:41 +0000
commiteafdc2db185d15b8c12e09afb24ae3c2cec65cea (patch)
tree1a732f606037354e1e664b2a8120e969aabbb23d
parent19dee3c91ab3fdce0847f9bde6c551f6bfd99991 (diff)
Mk/Uses/cmake.mk: sort arguments
Reported by: sunpoet
-rw-r--r--Mk/Uses/cmake.mk8
1 files changed, 4 insertions, 4 deletions
diff --git a/Mk/Uses/cmake.mk b/Mk/Uses/cmake.mk
index e9a9dc64df58..4129f0f341fc 100644
--- a/Mk/Uses/cmake.mk
+++ b/Mk/Uses/cmake.mk
@@ -2,13 +2,13 @@
#
# Feature: cmake
# Usage: USES=cmake or USES=cmake:ARGS
-# Valid ARGS: insource, indirect, noninja, run, testing
+# Valid ARGS: indirect, insource, noninja, run, testing
# ARGS description:
-# insource do not perform an out-of-source build
# indirect do not run cmake for configure step, only add build dependency.
# This should be set only for ports which use other build systems,
# e.g. pep517 or meson, but rely internally on cmake.
-# noninja don't use ninja instead of make
+# insource do not perform an out-of-source build
+# noninja do not use ninja instead of make
# Setting this should be an exception, and hints to an issue
# inside the ports build system.
# A few corner cases never use ninja, and are handled, to reduce
@@ -60,7 +60,7 @@
.if !defined(_INCLUDE_USES_CMAKE_MK)
_INCLUDE_USES_CMAKE_MK= yes
-_valid_ARGS= insource indirect noninja run testing _internal
+_valid_ARGS= indirect insource noninja run testing _internal
_CMAKE_VERSION= 3.28.3
CMAKE_BIN= ${LOCALBASE}/bin/cmake