Skip to content

Commit a7ef008

Browse files
committed
fix recurse
1 parent 6f79e56 commit a7ef008

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ test:
4242
recurse:
4343
@for dir in */ ; do \
4444
if [ -d "$$dir" ]; then \
45-
( make $(cmd) -path="$$dir"); \
45+
( make $(cmd) path="$$dir"); \
4646
fi \
4747
done
4848

@@ -93,7 +93,7 @@ c-msan:
9393
# sanitize C code
9494
.SILENT: c-sanitize
9595
path ?= ./
96-
c-sanitize: c-asan $(path)
96+
c-sanitize: c-asan "path=$(path)"
9797
# - address sanitization and other checks (only on linux)
9898
# - memory sanitization (target m-san) is disabled because of multiple false positives
9999

0 commit comments

Comments
 (0)