From 073678282ee949c3f5f20ae6c9ad1e6b004b2ce2 Mon Sep 17 00:00:00 2001 From: Daniel Horton Date: Tue, 14 May 2024 16:13:58 +0100 Subject: [PATCH] README: Fixed getconf command in build instructions (#44) 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 d6d4c85..3946498 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ It's user-friendly, easy to grasp, and easy to implement. 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 hyprlang -j`nproc 2>/dev/null || getconf NPROCESSORS_CONF` +cmake --build ./build --config Release --target hyprlang -j`nproc 2>/dev/null || getconf _NPROCESSORS_CONF` ``` Install with: ```sh