There was an error while loading. Please reload this page.
1 parent 6f79e56 commit a7ef008Copy full SHA for a7ef008
1 file changed
Makefile
@@ -42,7 +42,7 @@ test:
42
recurse:
43
@for dir in */ ; do \
44
if [ -d "$$dir" ]; then \
45
- ( make $(cmd) -path="$$dir"); \
+ ( make $(cmd) path="$$dir"); \
46
fi \
47
done
48
@@ -93,7 +93,7 @@ c-msan:
93
# sanitize C code
94
.SILENT: c-sanitize
95
path ?= ./
96
-c-sanitize: c-asan $(path)
+c-sanitize: c-asan "path=$(path)"
97
# - address sanitization and other checks (only on linux)
98
# - memory sanitization (target m-san) is disabled because of multiple false positives
99
0 commit comments