From bff005ac9c308acb3046d277b60879defb1ee303 Mon Sep 17 00:00:00 2001 From: Daniel Horton Date: Tue, 14 May 2024 16:13:12 +0100 Subject: [PATCH] README: Fixed getconf command in build instructions (#72) 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 d399d63..ae8d5bb 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ Building is done via CMake: ```sh cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Release -DCMAKE_INSTALL_PREFIX:PATH=/usr -S . -B ./build -cmake --build ./build --config Release --target hyprpicker -j`nproc 2>/dev/null || getconf NPROCESSORS_CONF` +cmake --build ./build --config Release --target hyprpicker -j`nproc 2>/dev/null || getconf _NPROCESSORS_CONF` ``` Install with: