blob: 1ce9bfe5d22f1376b541845dc4e51d22896eff1a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
diff --git a/gn/toolchain/BUILD.gn b/gn/toolchain/BUILD.gn
index 8eace39..67d7b00 100644
--- a/gn/toolchain/BUILD.gn
+++ b/gn/toolchain/BUILD.gn
@@ -305,7 +305,7 @@ template("gcc_like_toolchain") {
rspfile = "{{output}}.rsp"
rspfile_content = "{{inputs}}"
rm_py = rebase_path("../rm.py")
- command = "$shell python3 \"$rm_py\" \"{{output}}\" && $ar rcs {{output}} @$rspfile"
+ command = "$shell python3 \"$rm_py\" \"{{output}}\" && $ar rcs {{output}} `cat $rspfile`"
}
outputs =
|