blob: 80f87376d5f2bbe4de5168da2e8f5491e32deaab (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
--- base/test/BUILD.gn.orig 2020-09-08 19:13:57 UTC
+++ base/test/BUILD.gn
@@ -418,7 +418,11 @@ if (is_linux) {
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) {
|