Skip to content

Commit

Permalink
Merge pull request sysprog21#22 from afcidk/fix-typo
Browse files Browse the repository at this point in the history
Fix typo
  • Loading branch information
jserv authored Feb 2, 2020
2 parents b9ed05d + b3646f7 commit 8550c69
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ else
endif

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

valgrind: valgrind_existence
# Explicitly disable sanitizer(s)
$(MAKE) clean SANITIER=0 qtest
$(MAKE) clean SANITIZER=0 qtest
$(eval patched_file := $(shell mktemp /tmp/qtest.XXXXXX))
cp qtest $(patched_file)
chmod u+x $(patched_file)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ $ make valgrind

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

## Using qtest

Expand Down

0 comments on commit 8550c69

Please sign in to comment.