X Tutup
Skip to content

Commit 5884ece

Browse files
committed
additionally check to make sure system is "Linux"
1 parent 6427dc0 commit 5884ece

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11

22
ifeq ($(shell uname -m),x86_64)
3+
ifeq ($(shell uname -s),Linux)
34
PYPY53 = pypy-5.3-src
45
else
56
PYPY53 = pypy-5.3
67
endif
8+
endif
79

810
help:
911
@echo " env install all production dependencies"

0 commit comments

Comments
 (0)
X Tutup