mirror of
https://github.com/hyprwm/hypridle.git
synced 2024-11-16 15:15:59 +01:00
README: Fixed getconf command in build instructions (#60)
getconf NPROCESSORS_CONF isn't a valid command. The correct command is getconf _NPROCESSORS_CONF.
This commit is contained in:
parent
a7a6b8f4f5
commit
afa6e21b88
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ will make those events ignored.
|
||||||
### Building:
|
### Building:
|
||||||
```sh
|
```sh
|
||||||
cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Release -S . -B ./build
|
cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Release -S . -B ./build
|
||||||
cmake --build ./build --config Release --target hypridle -j`nproc 2>/dev/null || getconf NPROCESSORS_CONF`
|
cmake --build ./build --config Release --target hypridle -j`nproc 2>/dev/null || getconf _NPROCESSORS_CONF`
|
||||||
```
|
```
|
||||||
|
|
||||||
### Installation:
|
### Installation:
|
||||||
|
|
Loading…
Reference in a new issue