fix termux detection
This commit is contained in:
parent
1cebac64fe
commit
6619a960e3
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -14,7 +14,7 @@ CURL = curl -s
|
||||||
# Checkers
|
# Checkers
|
||||||
ARCH = $(shell grep -c "archlinux" /proc/version 2> /dev/null)
|
ARCH = $(shell grep -c "archlinux" /proc/version 2> /dev/null)
|
||||||
WSL = $(shell grep -c "WSL2" /proc/version 2> /dev/null)
|
WSL = $(shell grep -c "WSL2" /proc/version 2> /dev/null)
|
||||||
TERMUX = $(shell type termux-info 2> /dev/null)
|
TERMUX = $(shell type termux-info &> /dev/null && echo 1)
|
||||||
|
|
||||||
# Hide some verbose messages from Make
|
# Hide some verbose messages from Make
|
||||||
MAKEFLAGS += --no-print-directory
|
MAKEFLAGS += --no-print-directory
|
||||||
|
|
Loading…
Reference in a new issue