commit 24e943f40226c8b2e84267ab0fe9cc44dd33e25e Author: Alexandre Allaire alexandre.allaire@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
tor-commits@lists.torproject.org