Skip to content

Commit

Permalink
Add pkg-config to required Linux dependencies
Browse files Browse the repository at this point in the history
Without it, cargo started erroring out for me after jj-vcs#970 saying it
couldn't find openssl without pkg-config being installed.
  • Loading branch information
dbarnett committed Jan 5, 2023
1 parent 5ecac4f commit 6da1ecf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 6da1ecf

Please sign in to comment.