summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorLuke T. Shumaker <lukeshu@lukeshu.com>2024-10-28 00:02:20 -0600
committerLuke T. Shumaker <lukeshu@lukeshu.com>2024-10-28 00:02:20 -0600
commit52d48b9ea39a990295fdaf53dea492637051bd10 (patch)
tree0833f14d08c26443a94a9a33ce934389c568896b /Makefile
parent88adb90f5e805bea27e619fd5209ef58dbff6fd1 (diff)
s/Licence/License/g
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 0f57255..26ce8ba 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
# Makefile - Main build script for sbc-harness project
#
# Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
-# SPDX-Licence-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: AGPL-3.0-or-later
linux.git = $(HOME)/src/github.com/torvalds/linux
@@ -104,6 +104,9 @@ lint/all: lint/%:
if ! grep -q 'Copyright (C) 2024 Luke T. Shumaker' $$filename; then \
echo "$$filename is missing a copyright statement"; r=1; \
fi; \
+ if ! grep -q ' SPDX-License-Identifier[:] ' $$filename; then \
+ echo "$$filename is missing an SPDX-License-Identifier"; r=1; \
+ fi; \
dscname_act=$$($(get_dscname) $$filename); \
dscname_exp=$$(echo "$$filename" | sed \
-e 's,.*/config/,,' \