Unverified Commit 99472cf0 authored by Taha Tesser's avatar Taha Tesser Committed by GitHub

fix pkg typos (#82544)

parent 9218f09d
...@@ -226,7 +226,7 @@ class UserMessages { ...@@ -226,7 +226,7 @@ class UserMessages {
'can be downloaded from https://github.com/ninja-build/ninja/releases'; 'can be downloaded from https://github.com/ninja-build/ninja/releases';
String ninjaTooOld(String minimumVersion) => 'ninja $minimumVersion or later is required.'; String ninjaTooOld(String minimumVersion) => 'ninja $minimumVersion or later is required.';
String pkgConfigVersion(String version) => 'pkg-config version $version'; String pkgConfigVersion(String version) => 'pkg-config version $version';
String get pkgConfigMissing => 'pgk-config is required for Linux development.\n' String get pkgConfigMissing => 'pkg-config is required for Linux development.\n'
'It is likely available from your distribution (e.g.: apt install pkg-config), or ' 'It is likely available from your distribution (e.g.: apt install pkg-config), or '
'can be downloaded from https://www.freedesktop.org/wiki/Software/pkg-config/'; 'can be downloaded from https://www.freedesktop.org/wiki/Software/pkg-config/';
String pkgConfigTooOld(String minimumVersion) => 'pkg-config $minimumVersion or later is required.'; String pkgConfigTooOld(String minimumVersion) => 'pkg-config $minimumVersion or later is required.';
......
...@@ -45,7 +45,7 @@ FakeCommand _ninjaPresentCommand(String version) { ...@@ -45,7 +45,7 @@ FakeCommand _ninjaPresentCommand(String version) {
); );
} }
// A command that will return typical-looking 'pgk-config --version' output with // A command that will return typical-looking 'pkg-config --version' output with
// the given version number. // the given version number.
FakeCommand _pkgConfigPresentCommand(String version) { FakeCommand _pkgConfigPresentCommand(String version) {
return FakeCommand( return FakeCommand(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment