Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 9 Apr 2024 08:59:46 GMT
From:      Max Brazhnikov <makc@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: eafdc2db185d - main - Mk/Uses/cmake.mk: sort arguments
Message-ID:  <202404090859.4398xk10014203@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by makc:

URL: https://cgit.FreeBSD.org/ports/commit/?id=eafdc2db185d15b8c12e09afb24ae3c2cec65cea

commit eafdc2db185d15b8c12e09afb24ae3c2cec65cea
Author:     Max Brazhnikov <makc@FreeBSD.org>
AuthorDate: 2024-04-09 08:58:41 +0000
Commit:     Max Brazhnikov <makc@FreeBSD.org>
CommitDate: 2024-04-09 08:58:41 +0000

    Mk/Uses/cmake.mk: sort arguments
    
    Reported by:    sunpoet
---
 Mk/Uses/cmake.mk | 8 ++++----
 1 file 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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202404090859.4398xk10014203>