Skip to content

Commit

Permalink
doc: remove mention of the pkg-config gem from extconf warning
Browse files Browse the repository at this point in the history
Closes #358
  • Loading branch information
flavorjones committed Nov 19, 2024
1 parent 31cbbd9 commit 292a4ab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
### Fixed

- Fix `Database#encoding=` support for switching the database encoding to `UTF-16BE`, which has been broken since `Database#encoding=` was introduced in v1.3.12 in 2016. [#575] @miyucy
- Omit mention of the `pkg-config` gem when failing to build from source, since it is not used. [#358] @flavorjones


## 2.2.0 / 2024-10-30
Expand Down
2 changes: 1 addition & 1 deletion ext/sqlite3/extconf.rb
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ def abort_could_not_find(missing)
end

def abort_pkg_config(id)
abort("\nCould not configure the build properly (#{id}). Please install either the `pkg-config` utility or the `pkg-config` rubygem.\n\n")
abort("\nCould not configure the build properly (#{id}). Please install the `pkg-config` utility.\n\n")
end

def cross_build?
Expand Down

0 comments on commit 292a4ab

Please sign in to comment.