summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Schaller <michael@5challer.de>2015-06-26 13:27:37 +0200
committerMichael Schaller <michael@5challer.de>2015-08-04 09:34:26 +0200
commite47d87e404859b8de09663f8d38485238f7eab52 (patch)
tree924c7ad3e242f9b4bababbfebef4e6237ea5ee4d
parent0db9a6ba7b243546979f9a1737bac8d8435295d8 (diff)
downloadswig-e47d87e404859b8de09663f8d38485238f7eab52.tar.gz
Fixed Examples/go/director/Makefile as there might be no copy of director.go during clean if a separate build directory is in use.
-rw-r--r--Examples/go/director/Makefile2
1 files changed, 1 insertions, 1 deletions
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