Fixed Examples/go/director/Makefile as there might be no copy of director.go during clean if a separate build directory is in use.

This commit is contained in:
Michael Schaller 2015-06-26 13:27:37 +02:00
commit e47d87e404

View file

@ -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