forked from mirrors/jj
Add pkg-config to required Linux dependencies
Without it, cargo started erroring out for me after #970 saying it couldn't find openssl without pkg-config being installed.
This commit is contained in:
parent
5ecac4fc44
commit
6da1ecfba0
1 changed files with 3 additions and 3 deletions
|
@ -153,10 +153,10 @@ On most distributions, you'll need to build from source using `cargo` directly.
|
|||
|
||||
#### Build using `cargo`
|
||||
|
||||
First make sure that you have the `libssl-dev` and `openssl` packages installed
|
||||
by running something like this:
|
||||
First make sure that you have the `libssl-dev`, `openssl`, and `pkg-config`
|
||||
packages installed by running something like this:
|
||||
```shell script
|
||||
sudo apt-get install libssl-dev openssl
|
||||
sudo apt-get install libssl-dev openssl pkg-config
|
||||
```
|
||||
|
||||
Now run:
|
||||
|
|
Loading…
Reference in a new issue