Index: gn/BUILD.gn |
diff --git a/gn/BUILD.gn b/gn/BUILD.gn |
index cea57454a9a7ccbedd77d61ccdf745ff11c63ea9..fecca8efe81f7dd55b097fc78194e5fbb8961ffc 100644 |
--- a/gn/BUILD.gn |
+++ b/gn/BUILD.gn |
@@ -4,7 +4,6 @@ |
# found in the LICENSE file. |
declare_args() { |
- ar = "ar" |
cc = "cc" |
cxx = "c++" |
@@ -97,13 +96,13 @@ toolchain("gcc_like") { |
} |
tool("alink") { |
- command = "rm -f {{output}} && $ar rcs {{output}} {{inputs}}" |
+ command = "rm -f {{output}} && ar rcs {{output}} {{inputs}}" |
outputs = [ |
"{{root_out_dir}}/{{target_output_name}}{{output_extension}}", |
] |
default_output_extension = ".a" |
output_prefix = "lib" |
- description = "$ar {{output}} ..." |
+ description = "ar {{output}} ..." |
} |
tool("solink") { |