summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorJonathan Wright <jonathan.wright@arm.com>2018-04-30 15:04:02 +0100
committerJonathan Wright <jonathan.wright@arm.com>2018-04-30 17:25:42 +0100
commit2f36e853b53a2b269ed00fc26cdc788308aa3e59 (patch)
treedb061bd8dafd28b7869171039cfdd3afe7c78a41 /tools
parenta8d9550b527107b85703d7b4e93073e653ae95f7 (diff)
cert_create: fix makefile to remove executable on 'make realclean'
Spurious whitespace existed in the BINARY shell variable which meant the cert_tool executable was not being removed on 'make realclean'. Change-Id: Ibfd2fd17889514f6613e33c6df58d53b9232ec14 Signed-off-by: Jonathan Wright <jonathan.wright@arm.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/cert_create/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/cert_create/Makefile b/tools/cert_create/Makefile
index b0994b8c..8a1958ff 100644
--- a/tools/cert_create/Makefile
+++ b/tools/cert_create/Makefile
@@ -86,5 +86,5 @@ clean:
$(call SHELL_DELETE_ALL, src/build_msg.o ${OBJECTS})
realclean: clean
- $(call SHELL_DELETE, ${BINARY})
+ $(call SHELL_DELETE,${BINARY})