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

Commit 789c57ee authored by Colin Cross's avatar Colin Cross Committed by Gerrit Code Review
Browse files

Merge "Follow argument changes to RuleBuilder"

parents 69ba9af6 40c9513f
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -48,10 +48,10 @@ func (t *targetFSConfigGen) GenerateAndroidBuildActions(ctx android.ModuleContex
		path := android.PathForModuleGen(ctx, "empty")
		t.paths = android.Paths{path}

		rule := android.NewRuleBuilder()
		rule := android.NewRuleBuilder(pctx, ctx)
		rule.Command().Text("rm -rf").Output(path)
		rule.Command().Text("touch").Output(path)
		rule.Build(pctx, ctx, "fs_config_empty", "create empty file")
		rule.Build("fs_config_empty", "create empty file")
	}
}