Skip to content

Commit 2116615

Browse files
committed
[druntime-test]: exceptions: print which commands
Signed-off-by: Andrei Horodniceanu <[email protected]>
1 parent 5e08573 commit 2116615

File tree

1 file changed

+5
-0
lines changed
  • runtime/druntime/test/exceptions

1 file changed

+5
-0
lines changed

runtime/druntime/test/exceptions/Makefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ ifdef IN_LDC
33
include ../../../../dmd/osmodel.mak
44
endif
55

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+
611
ifeq ($(OS),linux)
712
# FIXME: detect musl libc robustly; just checking Alpine Linux' apk tool for now
813
ifeq (1,$(shell command -v apk &>/dev/null && echo 1))

0 commit comments

Comments
 (0)