From 056f4b3f85e98bacae509dd8e9b386a30badd330 Mon Sep 17 00:00:00 2001 From: Matthew Leibowitz Date: Tue, 13 Mar 2018 04:44:51 +0200 Subject: [PATCH] only use the linux soname on linux --- gn/BUILD.gn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gn/BUILD.gn b/gn/BUILD.gn index 559aead..ec9d77f 100644 --- a/gn/BUILD.gn +++ b/gn/BUILD.gn @@ -698,7 +698,7 @@ toolchain("gcc_like") { tool("solink") { soname = "{{target_output_name}}{{output_extension}}" - if (linux_soname_version != "") { + if (is_linux && linux_soname_version != "") { soname += ".$linux_soname_version" } -- 2.7.4