Skip to content

Commit

Permalink
Fix doctor command not finding pkg-config on Solus (#3670)
Browse files Browse the repository at this point in the history
* Fix doctor command not finding pkg-config on Solus

* Update changelog
  • Loading branch information
ianmjones authored Aug 10, 2024
1 parent ddf2703 commit 2b35861
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion v2/internal/system/packagemanager/eopkg.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ func (e *Eopkg) Packages() packagemap {
{Name: "gcc", SystemPackage: true},
},
"pkg-config": []*Package{
{Name: "pkg-config", SystemPackage: true},
{Name: "pkgconf", SystemPackage: true},
},
"npm": []*Package{
{Name: "nodejs", SystemPackage: true},
Expand Down
2 changes: 1 addition & 1 deletion website/src/pages/changelog.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fixed an error that occurred when an author name contains a string that is not suitable for JSON. Fixed by @taiseiotsuka in [PR](https://github.com/wailsapp/wails/pull/3638)
- Fixed MacOS build to use `outputfilename` from wails.json. [#3200](https://github.com/wailsapp/wails/issues/3200)
- Fixed file drop events on windows. Fixed in [PR](https://github.com/wailsapp/wails/pull/3595) by @FrancescoLuzzi
+ Fixed file drop events on Windows in [PR](https://github.com/wailsapp/wails/pull/3595) by @FrancescoLuzzi
- Fixed doctor command not finding pkg-config on Solus. [PR #3670](https://github.com/wailsapp/wails/pull/3670) by [@ianmjones](https://github.com/ianmjones)

## v2.9.1 - 2024-06-18

Expand Down

0 comments on commit 2b35861

Please sign in to comment.