summaryrefslogtreecommitdiff
path: root/build_extra
diff options
context:
space:
mode:
Diffstat (limited to 'build_extra')
-rw-r--r--build_extra/deno.gni2
-rwxr-xr-xbuild_extra/rust/get_rust_ldflags.py5
2 files changed, 4 insertions, 3 deletions
diff --git a/build_extra/deno.gni b/build_extra/deno.gni
index 6d1293bc1..6fed4816e 100644
--- a/build_extra/deno.gni
+++ b/build_extra/deno.gni
@@ -1,3 +1,5 @@
+# Copyright 2018 the Deno authors. All rights reserved. MIT license.
+
template("run_node") {
action(target_name) {
forward_variables_from(invoker, "*")
diff --git a/build_extra/rust/get_rust_ldflags.py b/build_extra/rust/get_rust_ldflags.py
index b20b66143..a1726fd4f 100755
--- a/build_extra/rust/get_rust_ldflags.py
+++ b/build_extra/rust/get_rust_ldflags.py
@@ -1,7 +1,6 @@
#!/usr/bin/env python
-# Copyright 2018 Bert Belder <bertbelder@gmail.com>
-# All rights reserved. MIT License.
-
+# Copyright 2018 the Deno authors. All rights reserved. MIT license.
+#
# The Rust compiler normally builds source code directly into an executable.
# Internally, object code is produced, and then the (system) linker is called,
# but this all happens under the covers.