mirror of
https://git.freebsd.org/ports.git
synced 2025-07-06 20:09:14 -04:00
- The port now uses the combined patch set for OpenBSD and FreeBSD maintained by Robert Nagy. - Fix build on i386 again. Obtained from: Robert Nagy <robert@openbsd.org> Security: https://vuxml.freebsd.org/freebsd/e12432af-8e73-11ec-8bc4-3065ec8fd3ec.html Security: https://vuxml.freebsd.org/freebsd/e852f43c-846e-11ec-b043-3065ec8fd3ec.html
11 lines
460 B
Python
11 lines
460 B
Python
--- build/config/linux/pkg-config.py.orig 2022-02-07 13:39:41 UTC
|
|
+++ build/config/linux/pkg-config.py
|
|
@@ -109,7 +109,7 @@ def main():
|
|
# If this is run on non-Linux platforms, just return nothing and indicate
|
|
# success. This allows us to "kind of emulate" a Linux build from other
|
|
# platforms.
|
|
- if "linux" not in sys.platform:
|
|
+ if not sys.platform.startswith(tuple(['linux', 'openbsd', 'freebsd'])):
|
|
print("[[],[],[],[],[]]")
|
|
return 0
|
|
|