From b2f8274e1d52b0008f770f1136c9d58f77530202 Mon Sep 17 00:00:00 2001 From: Daniel Horton Date: Tue, 14 May 2024 16:13:41 +0100 Subject: [PATCH] README: Fixed getconf command in build instructions (#172) 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 afefcdb..4a97506 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,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 hyprpaper -j`nproc 2>/dev/null || getconf NPROCESSORS_CONF` +cmake --build ./build --config Release --target hyprpaper -j`nproc 2>/dev/null || getconf _NPROCESSORS_CONF` ``` Install with: