From 386a1e6fc290fc33177d0b44cd393e32c5433925 Mon Sep 17 00:00:00 2001 From: Daniel Horton Date: Mon, 13 May 2024 15:21:54 +0100 Subject: [PATCH] readme: Fixed getconf command in build instructions (#326) getconf NPROCESSORS_CONF isn't a valid command. The correct command is getconf _NPROCESSORS_CONF. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 24beccf..45d886e 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ bundled with the mesa package. Building: ```sh cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Release -S . -B ./build -cmake --build ./build --config Release --target hyprlock -j`nproc 2>/dev/null || getconf NPROCESSORS_CONF` +cmake --build ./build --config Release --target hyprlock -j`nproc 2>/dev/null || getconf _NPROCESSORS_CONF` ``` Installation: