File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -6,20 +6,20 @@ ENV := env
6
6
DEPENDS := $(ENV ) /.depends
7
7
EGG_INFO := $(subst -,_,$(PROJECT ) ) .egg-info
8
8
9
- PLATFORM := $(shell python -c 'import sys; print sys.platform')
9
+ PLATFORM := $(shell python -c 'import sys; print( sys.platform) ')
10
10
11
- ifneq ($(findstring win32, $(PLATFORM ) ) , )
12
- SYS_PYTHON := C:\\Python33\\python.exe
13
- SYS_VIRTUALENV := C:\\Python33\\Scripts\\virtualenv.exe
14
- BIN := $(ENV ) /Scripts
11
+ ifneq ($(findstring win32, $(PLATFORM ) ) ,)
12
+ SYS_PYTHON := C:\\Python33\\python.exe
13
+ SYS_VIRTUALENV := C:\\Python33\\Scripts\\virtualenv.exe
14
+ BIN := $(ENV)/Scripts
15
15
EXE := .exe
16
16
OPEN := cmd /c start
17
17
# https://bugs.launchpad.net/virtualenv/+bug/449537
18
18
export TCL_LIBRARY=C:\\Python33\\tcl\\tcl8.5
19
19
else
20
- SYS_PYTHON := python3
21
- SYS_VIRTUALENV := virtualenv
22
- BIN := $(ENV ) /bin
20
+ SYS_PYTHON := python3
21
+ SYS_VIRTUALENV := virtualenv
22
+ BIN := $(ENV)/bin
23
23
OPEN := open
24
24
endif
25
25
You can’t perform that action at this time.
0 commit comments