We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b211acf commit cbe6c70Copy full SHA for cbe6c70
src/test/run-make-fulldeps/tools.mk
@@ -30,9 +30,11 @@ DIFF := diff -u --strip-trailing-cr
30
# whenever possible. Most developer platforms include `/bin/dash`, but to ensure
31
# tests still work when `/bin/dash`, if not available, this `SHELL` override is
32
# conditional:
33
+ifndef IS_WINDOWS # dash interprets backslashes in executable paths incorrectly
34
ifneq (,$(wildcard /bin/dash))
35
SHELL := /bin/dash
36
endif
37
+endif
38
39
# This is the name of the binary we will generate and run; use this
40
# e.g. for `$(CC) -o $(RUN_BINFILE)`.
0 commit comments