summaryrefslogtreecommitdiff
path: root/Cmds
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2015-03-31 15:53:28 +0200
committerTobias Klauser <tklauser@distanz.ch>2015-03-31 15:53:28 +0200
commitf175ed40d587dd2551468a909272c9f5592b3afb (patch)
tree6177bd23e795aba7a429afd2f607e4900d23d861 /Cmds
parentdd5d906c40db5264d8d33c37565b39540f0258c8 (diff)
build: Initialize value of $C (sparse checker enable/disable)
Otherwise we get Cmds:19: warning: undefined variable `C' during `make coverity'. Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Diffstat (limited to 'Cmds')
-rw-r--r--Cmds1
1 files changed, 1 insertions, 0 deletions
diff --git a/Cmds b/Cmds
index 2296e76..1c9fc72 100644
--- a/Cmds
+++ b/Cmds
@@ -16,6 +16,7 @@ else
endif
# sparse related
+C =
ifeq ($(C), 1)
CHECK = $(Q)echo -e " CHECK\t$<" && sparse
else