mkmf.rb: Refine message from `pkg_config`

This commit is contained in:
Nobuyoshi Nakada 2023-01-09 18:32:32 +09:00
Родитель 0d7bbfc941
Коммит 29dc9378d9
1 изменённых файлов: 65 добавлений и 58 удалений

Просмотреть файл

@ -1849,6 +1849,12 @@ SRC
# invoked with the options and a stripped output string is returned without
# modifying any of the global values mentioned above.
def pkg_config(pkg, *options)
fmt = "not found"
def fmt.%(x)
x ? x.inspect : self
end
checking_for "pkg-config for #{pkg}", fmt do
_, ldir = dir_config(pkg)
if ldir
pkg_config_path = "#{ldir}/pkgconfig"
@ -1911,6 +1917,7 @@ SRC
nil
end
end
end
# :stopdoc: