ports/www/chromium/patches/patch-build_toolchain_toolchain_gni

13 lines
400 B
Text
Raw Normal View History

2023-08-18 18:38:43 +00:00
Index: build/toolchain/toolchain.gni
--- build/toolchain/toolchain.gni.orig
+++ build/toolchain/toolchain.gni
@@ -62,7 +62,7 @@ if (host_os == "mac") {
host_shlib_extension = ".dylib"
} else if (host_os == "win") {
host_shlib_extension = ".dll"
-} else if (host_os == "linux") {
+} else if (is_posix) {
host_shlib_extension = ".so"
} else {
assert(false, "Host platform not supported")