Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1456958c authored by Dan Willemsen's avatar Dan Willemsen
Browse files

Default BUILD_BROKEN_PHONY_TARGETS to false

All downstream users either mark BUILD_BROKEN_PHONY_TARGETS=true
explicitly, or don't have any warnings.

Test: build_test on downstream branches
Change-Id: I6e9d7ed42da941148827854851657895c2e98649
parent dbf1d4f8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -198,5 +198,5 @@ func runMakeProductConfig(ctx Context, config Config) {

	config.SetPdkBuild(make_vars["TARGET_BUILD_PDK"] == "true")
	config.SetBuildBrokenDupRules(make_vars["BUILD_BROKEN_DUP_RULES"] == "true")
	config.SetBuildBrokenPhonyTargets(make_vars["BUILD_BROKEN_PHONY_TARGETS"] != "false")
	config.SetBuildBrokenPhonyTargets(make_vars["BUILD_BROKEN_PHONY_TARGETS"] == "true")
}