ok/jj
1
0
Fork 0
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:
David Barnett 2023-01-04 22:40:27 -06:00 committed by David Barnett
parent 5ecac4fc44
commit 6da1ecfba0

View file

@ -153,10 +153,10 @@ On most distributions, you'll need to build from source using `cargo` directly.
#### Build using `cargo` #### Build using `cargo`
First make sure that you have the `libssl-dev` and `openssl` packages installed First make sure that you have the `libssl-dev`, `openssl`, and `pkg-config`
by running something like this: packages installed by running something like this:
```shell script ```shell script
sudo apt-get install libssl-dev openssl sudo apt-get install libssl-dev openssl pkg-config
``` ```
Now run: Now run: