Skip to content

Commit b3646f7

Browse files
committed
Fix typo
1 parent b9ed05d commit b3646f7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ else
1414
endif
1515

1616
# Enable sanitizer(s) or not
17-
ifeq ("$(SANITIER)","1")
17+
ifeq ("$(SANITIZER)","1")
1818
# https://github.com/google/sanitizers/wiki/AddressSanitizerFlags
1919
CFLAGS += -fsanitize=address -fno-omit-frame-pointer -fno-common
2020
LDFLAGS += -fsanitize=address
@@ -46,7 +46,7 @@ valgrind_existence:
4646

4747
valgrind: valgrind_existence
4848
# Explicitly disable sanitizer(s)
49-
$(MAKE) clean SANITIER=0 qtest
49+
$(MAKE) clean SANITIZER=0 qtest
5050
$(eval patched_file := $(shell mktemp /tmp/qtest.XXXXXX))
5151
cp qtest $(patched_file)
5252
chmod u+x $(patched_file)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ $ make valgrind
6262

6363
Extra options can be recognized by make:
6464
* `VERBOSE`: control the build verbosity. If `VERBOSE=1`, echo eacho command in build process.
65-
* `SANITIER`: enable sanitizer(s) directed build. At the moment, AddressSanitizer is supported.
65+
* `SANITIZER`: enable sanitizer(s) directed build. At the moment, AddressSanitizer is supported.
6666

6767
## Using qtest
6868

0 commit comments

Comments
 (0)