Merge "Turn overriding command warnings into errors by default" into stage-aosp-master

This commit is contained in:
Dan Willemsen 2018-07-17 20:04:02 +00:00 committed by Android (Google) Code Review
commit 01a870ea6a

View file

@ -195,5 +195,5 @@ func runMakeProductConfig(ctx Context, config Config) {
config.SetTargetDeviceDir(make_vars["TARGET_DEVICE_DIR"])
config.SetPdkBuild(make_vars["TARGET_BUILD_PDK"] == "true")
config.SetBuildBrokenDupRules(make_vars["BUILD_BROKEN_DUP_RULES"] != "false")
config.SetBuildBrokenDupRules(make_vars["BUILD_BROKEN_DUP_RULES"] == "true")
}