From e47d87e404859b8de09663f8d38485238f7eab52 Mon Sep 17 00:00:00 2001 From: Michael Schaller Date: Fri, 26 Jun 2015 13:27:37 +0200 Subject: [PATCH] Fixed Examples/go/director/Makefile as there might be no copy of director.go during clean if a separate build directory is in use. --- Examples/go/director/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Examples/go/director/Makefile b/Examples/go/director/Makefile index 0c59bf340..84de5855d 100644 --- a/Examples/go/director/Makefile +++ b/Examples/go/director/Makefile @@ -18,6 +18,6 @@ build: clean: if [ -n '$(SRCDIR)' ]; then \ - rm director.go; \ + rm director.go || true; \ fi $(MAKE) -f $(TOP)/Makefile SRCDIR='$(SRCDIR)' INTERFACE='$(INTERFACE)' go_clean