1--- src/3rdparty/chromium/build/config/linux/pkg-config.py.orig 2025-11-06 16:28:09 UTC 2+++ src/3rdparty/chromium/build/config/linux/pkg-config.py 3@@ -113,6 +113,6 @@ def main(): 4 # If this is run on non-Linux platforms, just return nothing and indicate 5 # success. This allows us to "kind of emulate" a Linux build from other 6 # platforms. 7- if 'linux' not in sys.platform and 'darwin' not in sys.platform: 8+ if not sys.platform.startswith(tuple(['linux', 'darwin', 'freebsd', 'openbsd', 'midnightbsd'])): 9 print("[[],[],[],[],[]]") 10 return 0 11 12