We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e08573 commit 2116615Copy full SHA for 2116615
runtime/druntime/test/exceptions/Makefile
@@ -3,6 +3,11 @@ ifdef IN_LDC
3
include ../../../../dmd/osmodel.mak
4
endif
5
6
+$(info $(shell which apk ; echo $$?))
7
+$(info $(shell which apk && echo 1 ; echo $$?))
8
+$(info $(shell command -v apk ; echo $$?))
9
+$(info $(shell command -v apk && echo 1 ; echo $$?))
10
+
11
ifeq ($(OS),linux)
12
# FIXME: detect musl libc robustly; just checking Alpine Linux' apk tool for now
13
ifeq (1,$(shell command -v apk &>/dev/null && echo 1))
0 commit comments