mirror of
https://github.com/hyprwm/hyprlock.git
synced 2024-11-16 23:05:58 +01:00
readme: Fixed getconf command in build instructions (#326)
getconf NPROCESSORS_CONF isn't a valid command. The correct command is getconf _NPROCESSORS_CONF.
This commit is contained in:
parent
0477df2ca4
commit
386a1e6fc2
1 changed files with 1 additions and 1 deletions
|
@ -41,7 +41,7 @@ bundled with the mesa package.
|
||||||
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 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:
|
Installation:
|
||||||
|
|
Loading…
Reference in a new issue