]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
setup: don't use "python" in Makefile, use $(PYTHON) everywhere
authorZooko O'Whielacronx <zooko@zooko.com>
Mon, 21 Jul 2008 16:28:49 +0000 (09:28 -0700)
committerZooko O'Whielacronx <zooko@zooko.com>
Mon, 21 Jul 2008 16:28:49 +0000 (09:28 -0700)
Makefile

index 44bbd97969692684a22f44a9c8bf79c81c14729e..280f78649ae5fc47bef626bb7e25929351941f89 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -4,8 +4,8 @@
 default: build
 
 PYTHON=python
-PATHSEP=$(shell python -c 'import os ; print os.pathsep')
-OSSEP=$(shell python -c 'import os ; print os.sep')
+PATHSEP=$(shell $(PYTHON) -c 'import os ; print os.pathsep')
+OSSEP=$(shell $(PYTHON) -c 'import os ; print os.sep')
 
 REACTOR=
 
@@ -16,7 +16,7 @@ ifneq ($(LIBRARY_DIRS),)
 LIBRARY_DIRS_ARG = -L$(LIBRARY_DIRS)
 endif
 
-PLAT = $(strip $(shell python -c "import sys ; print sys.platform"))
+PLAT = $(strip $(shell $(PYTHON) -c "import sys ; print sys.platform"))
 ifeq ($(PLAT),win32)
        # The platform is Windows with cygwin build tools and the native Python interpreter.
        SUPPORT = $(shell cygpath -w $(shell pwd))\support
@@ -263,7 +263,7 @@ check-grid: .built
 # 'make repl' is a simple-to-type command to get a Python interpreter loop
 # from which you can type 'import allmydata'
 repl:
-       $(PP) python
+       $(PP) $(PYTHON)
 
 test-darcs-boringfile:
        $(MAKE)