summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAbhisek Devkota <ciwrl@lineageos.org>2017-02-08 12:12:13 -0800
committerAbhisek Devkota <ciwrl@lineageos.org>2017-02-08 20:14:21 +0000
commiteee8d5e431f113c145fe8a7b34c3b797d7c5f1d5 (patch)
treea14992fc34e7cdfe6283fad816e6f76f59cd4236
parenta14bcf5d0037a3d18d8b807b8999aca2cf524d56 (diff)
downloadbuild-eee8d5e431f113c145fe8a7b34c3b797d7c5f1d5.zip
build-eee8d5e431f113c145fe8a7b34c3b797d7c5f1d5.tar.gz
build-eee8d5e431f113c145fe8a7b34c3b797d7c5f1d5.tar.bz2
Add dumpvar for WITH_SU
-Allow folks to see easily if the term session they are in has WITH_SU set to true -Also add a dumpvar rule for WITH_GMS for those that have it -Remove unused CYNGN dumpvar rules Change-Id: I8cba8ffecd8f8943c69326ae07bcc17ea61e3f34
-rw-r--r--core/dumpvar.mk8
1 files changed, 5 insertions, 3 deletions
diff --git a/core/dumpvar.mk b/core/dumpvar.mk
index 0166e96..563683f 100644
--- a/core/dumpvar.mk
+++ b/core/dumpvar.mk
@@ -84,9 +84,11 @@ $(info HOST_OS_EXTRA=$(HOST_OS_EXTRA))
$(info HOST_BUILD_TYPE=$(HOST_BUILD_TYPE))
$(info BUILD_ID=$(BUILD_ID))
$(info OUT_DIR=$(OUT_DIR))
-ifeq ($(CYNGN_TARGET),true)
-$(info CYNGN_TARGET=$(CYNGN_TARGET))
-$(info CYNGN_FEATURES=$(CYNGN_FEATURES))
+ifeq ($(WITH_SU),true)
+$(info WITH_SU=$(WITH_SU))
+endif
+ifeq ($(WITH_GMS),true)
+$(info WITH_GMS=$(WITH_GMS))
endif
$(info ============================================)
endif