Skip to content
This repository was archived by the owner on Jun 27, 2023. It is now read-only.

Commit 4a10460

Browse files
committed
Fixed Makefile
1 parent 00ca70d commit 4a10460

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

Makefile

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ ifeq ($(OS),Windows_NT)
44
PYTHON2_X64 = "c:\Program Files\Python27\python.exe"
55
PYTHON3_X64 = "c:\Program Files\Python35\python.exe"
66
else
7-
PYTHON2_X86 = /usr/bin/python2
8-
PYTHON3_X86 = /usr/bin/python3
9-
PYTHON2_X64 = /usr/bin/python2
10-
PYTHON3_X64 = /usr/bin/python3
7+
PYTHON2_X86 = python2
8+
PYTHON3_X86 = python3
9+
PYTHON2_X64 = python2
10+
PYTHON3_X64 = python3
1111
endif
1212

1313
.PHONY: all build upload test clean
@@ -114,11 +114,9 @@ upload: upload_sdist \
114114
upload_msi_py2_x64 \
115115
upload_msi_py3_x64
116116
else
117-
upload: build_sdist \
117+
upload: upload_sdist \
118118
upload_egg_py2_x64 \
119-
upload_egg_py3_x64 \
120-
upload_wheel_py2_x64 \
121-
upload_wheel_py3_x64
119+
upload_egg_py3_x64
122120
endif
123121

124122
upload_sdist: clean

0 commit comments

Comments
 (0)