mirror of
https://git.freebsd.org/ports.git
synced 2025-05-05 16:07:38 -04:00
11 lines
503 B
C++
11 lines
503 B
C++
--- extensions/common/command.cc.orig 2023-10-11 18:22:24 UTC
|
|
+++ extensions/common/command.cc
|
|
@@ -282,7 +282,7 @@ std::string Command::CommandPlatform() {
|
|
return values::kKeybindingPlatformMac;
|
|
#elif BUILDFLAG(IS_CHROMEOS)
|
|
return values::kKeybindingPlatformChromeOs;
|
|
-#elif BUILDFLAG(IS_LINUX)
|
|
+#elif BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_BSD)
|
|
return values::kKeybindingPlatformLinux;
|
|
#elif BUILDFLAG(IS_FUCHSIA)
|
|
// TODO(crbug.com/1312215): Change this once we decide what string should be
|