aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Albert <danalbert@google.com>2015-04-28 11:26:45 -0700
committerDan Albert <danalbert@google.com>2015-04-28 11:26:45 -0700
commit9f176554533658a3da0564fc53b0bddfe63f367c (patch)
tree596653e4a44cc7eac09bc2c3c4ac6f72e6fb5501
parent55f3c4c25e4ec9cf80331aa512df8daf8d601fdf (diff)
downloadbuild-9f176554533658a3da0564fc53b0bddfe63f367c.tar.gz
Fix bad variable names.
My working tree was still dirty when I verified the original change. Change-Id: I3e6fa6908b809c016231b398c5d30d8cce3b87ab
-rw-r--r--core/config_sanitizers.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/config_sanitizers.mk b/core/config_sanitizers.mk
index e195692892..dcaab20a4a 100644
--- a/core/config_sanitizers.mk
+++ b/core/config_sanitizers.mk
@@ -100,7 +100,7 @@ ifneq ($(filter undefined,$(my_sanitize)),)
endif
-ifeq ($(strip $(LOCAL_SANITIZE_RECOVER)),true)
- recover_arg := $(subst $(space),$(comma),$(my_sanitize)),
+ifneq ($(strip $(LOCAL_SANITIZE_RECOVER)),)
+ recover_arg := $(subst $(space),$(comma),$(LOCAL_SANITIZE_RECOVER)),
my_cflags += -fsanitize-recover=$(recover_arg)
endif