[tor-commits] [flashproxy/master] Removed line using undefined variable.

dcf at torproject.org dcf at torproject.org
Mon Dec 3 00:57:51 UTC 2012


commit 59022683b9c12ab43915318bce50df2f77b0f980
Author: Alexandre Allaire <alexandre.allaire at mail.mcgill.ca>
Date:   Thu Nov 15 15:21:24 2012 -0800

    Removed line using undefined variable.
    
    The previous commit was a modification of
    another version of the makefile. The
    modifications introduced some errors,
    which are now fixed.
---
 Makefile |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/Makefile b/Makefile
index c195ece..337602d 100644
--- a/Makefile
+++ b/Makefile
@@ -50,14 +50,14 @@ sign: dist/$(DISTNAME).zip
 	cd dist && gpg --verify $(DISTNAME).zip.asc $(DISTNAME).zip
 
 exe: $(CLIENT_BIN)
-	rm -Rf $(DISTDIR)
+	rm -rf $(DISTDIR)
 	mkdir -p $(DISTDIR)
 	for file in $(CLIENT_BIN); \
 	do \
-	    python $(PYINSTALLER_PATH) --onedir $$file; \
-	    cp -Rf dist/$$file/* $(DISTDIR); \
-	    $$(cygpath -aw $$(which pyinstaller.py)); \
-	    rm -Rf dist/$$file; \
+	    python $$(cygpath -aw $$(which pyinstaller.py)) --onedir $$file; \
+	    cp dist/$$file/* $(DISTDIR); \
+	    mv $(DISTDIR)/$$file.exe $(DISTDIR)/$$file; \
+	    rm -rf dist/$$file; \
 	done
 	mv $(DISTDIR)/M2Crypto.__m2crypto.pyd $(DISTDIR)/__m2crypto.pyd
 





More information about the tor-commits mailing list