git: eafdc2db185d - main - Mk/Uses/cmake.mk: sort arguments
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 09 Apr 2024 08:59:46 UTC
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