From 54d87e09c99af02f643ac3ad85c94696a9285480 Mon Sep 17 00:00:00 2001 From: Sergio Galvan Date: Wed, 30 Sep 2015 20:04:55 -0500 Subject: [PATCH] Call $(RM) does not include -- --- zombietest/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zombietest/Makefile b/zombietest/Makefile index c1d9b19..2df9de2 100644 --- a/zombietest/Makefile +++ b/zombietest/Makefile @@ -15,7 +15,7 @@ runsvinit: ../*.go env GOOS=linux GOARCH=amd64 $(GO) build -o $@ github.com/peterbourgon/runsvinit zombie: .build.uptodate - $(SUDO) docker run $(RM) -v $(shell pwd):/mount zombietest-build cc -Wall -Werror -o /mount/zombie /zombie.c + $(SUDO) docker run $$RM -v $(shell pwd):/mount zombietest-build cc -Wall -Werror -o /mount/zombie /zombie.c .build.uptodate: build/zombie.c build/Dockerfile $(SUDO) docker build -t zombietest-build build/