blob: b19569faecac69229a9de12080ab983c319b90d1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
--- base/test/BUILD.gn.orig 2020-11-13 06:36:34 UTC
+++ base/test/BUILD.gn
@@ -415,7 +415,11 @@ if (is_linux || is_chromeos) {
copy("fonts_conf") {
sources = [ "fonts.conf" ]
- outputs = [ "${root_build_dir}/etc/fonts/{{source_file_part}}" ]
+ if (is_bsd) {
+ outputs = [ "${root_build_dir}/usr/local/etc/fonts/{{source_file_part}}" ]
+ } else {
+ outputs = [ "${root_build_dir}/etc/fonts/{{source_file_part}}" ]
+ }
}
if (current_toolchain == host_toolchain) {
|