[tor-commits] [flashproxy/master] Use deferred evaluation of PYTHONPATH.
dcf at torproject.org
dcf at torproject.org
Sat Jun 1 22:49:49 UTC 2013
commit 8baaec50b7ebb946467b2b1469d185a47f3db3d2
Author: David Fifield <david at bamsoftware.com>
Date: Sat Jun 1 15:49:02 2013 -0700
Use deferred evaluation of PYTHONPATH.
Otherwise you get "cygpath: not found" on non-Windows platforms.
---
doc/Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/doc/Makefile b/doc/Makefile
index 6ca31dc..f4eecd6 100644
--- a/doc/Makefile
+++ b/doc/Makefile
@@ -70,7 +70,7 @@ $(PT_BUNDLE_GNULINUX_X86_64): WORKDIR = work/gnulinux-x86_64-$(PT_BUNDLE_VERSION
$(PT_BUNDLE_GNULINUX_X86_64): BUNDLE_GNULINUX = $(BUNDLE_GNULINUX_X86_64)
$(PT_BUNDLE_WINDOWS): TBBDIR = $(WORKDIR)/Tor Browser
-$(PT_BUNDLE_WINDOWS): export PYTHONPATH := $(shell cygpath --absolute --windows "$(PYPTLIB_WORK)"/build)
+$(PT_BUNDLE_WINDOWS): export PYTHONPATH = $(shell cygpath --absolute --windows "$(PYPTLIB_WORK)"/build)
$(PT_BUNDLE_WINDOWS):
@if [ ! -f "$(BUNDLE_WINDOWS)" ]; then \
echo "$(BUNDLE_WINDOWS) is missing."; \
More information about the tor-commits
mailing list