1
0
mirror of https://github.com/janet-lang/janet synced 2024-06-25 22:53:16 +00:00

Add comment to explain Linux check in Makefile

This commit is contained in:
Michael Camilleri 2021-10-21 14:23:23 +09:00
parent 2bd63c2d27
commit f3bab72a86
No known key found for this signature in database
GPG Key ID: 7EB218A48DF8B572

View File

@ -69,7 +69,7 @@ ifeq ($(UNAME), Haiku)
LDFLAGS=-Wl,--export-dynamic
endif
# For Android (termux)
ifeq ($(UNAME), Linux)
ifeq ($(UNAME), Linux) # uname on Darwin doesn't recognise -o
ifeq ($(shell uname -o), Android)
CLIBS:=$(CLIBS) -landroid-spawn
endif