Skip to content

Commit 292a4ab

Browse files
committed
doc: remove mention of the pkg-config gem from extconf warning
Closes #358
1 parent 31cbbd9 commit 292a4ab

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
### Fixed
1313

1414
- 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
15+
- Omit mention of the `pkg-config` gem when failing to build from source, since it is not used. [#358] @flavorjones
1516

1617

1718
## 2.2.0 / 2024-10-30

ext/sqlite3/extconf.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ def abort_could_not_find(missing)
175175
end
176176

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

181181
def cross_build?

0 commit comments

Comments
 (0)