[tor-commits] [flashproxy/master] rm $(PYINSTALLER_TMPDIR) before dist-exe.
dcf at torproject.org
dcf at torproject.org
Mon Dec 3 00:57:51 UTC 2012
commit 78025e6fdfaa0edd6bbd24233f3aae580b3484c9
Author: David Fifield <david at bamsoftware.com>
Date: Sun Dec 2 09:54:49 2012 -0800
rm $(PYINSTALLER_TMPDIR) before dist-exe.
Error: The output directory "C:\...\flashproxy\pyi\dist" is not empty. Please remove all its contents or use the -y option (remove output directory without confirmation).
Makefile:62: recipe for target `dist-exe' failed
---
Makefile | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Makefile b/Makefile
index f154eaa..d747864 100644
--- a/Makefile
+++ b/Makefile
@@ -59,7 +59,7 @@ DISTNAME_WIN32 = $(DISTNAME)-win32
DISTDIR_WIN32 = $(DISTDIR)-win32
dist-exe: CLIENT_MAN := $(addsuffix .txt,$(CLIENT_MAN))
dist-exe: $(CLIENT_BIN) flashproxy-client.spec
- rm -rf dist
+ rm -rf dist $(PYINSTALLER_TMPDIR)
mkdir -p $(DISTDIR_WIN32)
mkdir $(DISTDIR_WIN32)/doc
$(PYTHON) $(PYINSTALLER_PY) --buildpath=$(PYINSTALLER_TMPDIR)/build flashproxy-client.spec 2>&1 \
More information about the tor-commits
mailing list