mirror of
https://github.com/seL4/seL4.git
synced 2026-03-27 18:39:55 +00:00
This commit also converts our own copyright headers to directly use SPDX, but leaves all other copyright header intact, only adding the SPDX ident. As far as possible this commit also merges multiple Data61 copyright statements/headers into one for consistency.
18 lines
267 B
Bash
Executable File
18 lines
267 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Copyright 2020, Data61, CSIRO (ABN 41 687 119 230)
|
|
#
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
|
#
|
|
|
|
#
|
|
# Concatinate files together, adding in appropriate "#line" directives.
|
|
#
|
|
|
|
while [ $# -ge 1 ]; do
|
|
echo "#line 1 \"$1\""
|
|
cat "$1"
|
|
shift
|
|
done
|
|
|