summaryrefslogtreecommitdiff
path: root/util/docker
diff options
context:
space:
mode:
authorFrans Hendriks <fhendriks@eltan.com>2020-11-25 12:19:51 +0100
committerPatrick Georgi <pgeorgi@google.com>2020-11-30 08:05:29 +0000
commitf90056268fe0280da600703baebf5a0623f019e1 (patch)
tree708ef28017c2d8291b792d65038d842a43655668 /util/docker
parentb38ca863d9a41dd6ab9881a00fe6eda8c5108e75 (diff)
downloadcoreboot-f90056268fe0280da600703baebf5a0623f019e1.tar.xz
util/docker/Makefile: Add missing separator
Build using docker results in error: Makefile:86: *** missing separator. Add space after ifeq. Tested: Building Facebook FBG1701 binary. Change-Id: Ib42abe966e67dac380173ec982c9f6bd4cf074cc Signed-off-by: Frans Hendriks <fhendriks@eltan.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/47992 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-by: Wim Vervoorn <wvervoorn@eltan.com> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'util/docker')
-rw-r--r--util/docker/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/docker/Makefile b/util/docker/Makefile
index 8b1d0efb8d..cf14c0d5b4 100644
--- a/util/docker/Makefile
+++ b/util/docker/Makefile
@@ -83,7 +83,7 @@ docker-clean: clean-coreboot-containers
@$(MAKE) clean-coreboot-images
docker-cleanall: test-docker
-ifeq($(Y),1)
+ifeq ($(Y),1)
@if [ -n "$$($(DOCKER) ps -a | grep -v "CONTAINER")" ]; then \
$(DOCKER) kill $$($(DOCKER) ps | grep -v "CONTAINER" | sed 's|\s.*$$||') ; \
$(DOCKER) rm $$($(DOCKER) ps -a | grep -v "CONTAINER" | sed 's|\s.*$$||'); \