mirror of
https://github.com/hyprwm/hyprpaper.git
synced 2024-11-20 12:37:08 +03:00
README: Fixed getconf command in build instructions (#172)
getconf NPROCESSORS_CONF isn't a valid command. The correct command is getconf _NPROCESSORS_CONF.
This commit is contained in:
parent
1e1fc79d84
commit
b2f8274e1d
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user