1From 9d3f6e9ff5e66af90a5d187d902f7893fb91c24b Mon Sep 17 00:00:00 2001
2From: "Kirill A. Korinsky" <kirill@korins.ky>
3Date: Fri, 1 Jul 2022 12:23:37 +0200
4Subject: [PATCH] Always check for pkg-config
5
6---
7 build/moz.configure/pkg.configure | 3 +--
8 1 file changed, 1 insertion(+), 2 deletions(-)
9
10diff --git a/build/moz.configure/pkg.configure b/build/moz.configure/pkg.configure
11index 6b460ae174eed..0056ecd7ae2d8 100644
12--- a/build/moz.configure/pkg.configure
13+++ b/build/moz.configure/pkg.configure
14@@ -15,8 +15,7 @@ pkg_config = check_prog(
15 pkg_config,
16 bootstrap=depends(when=target_sysroot.bootstrapped)(lambda: "pkgconf"),
17 allow_missing=True,
18- when=compile_environment
19- & depends(target.os)(lambda os: os not in ("WINNT", "OSX", "Android")),
20+ when=compile_environment,
21 )
22
23