From 7dbdfac3cc68888b2319ccfb0d595ecb7af2e38d Mon Sep 17 00:00:00 2001 From: Cole Faust Date: Mon, 7 Feb 2022 12:31:20 -0800 Subject: [PATCH] Link to documentation about variables in include statements As requested in aosp/1962181 Fixes: 217248902 Test: Presubmits Change-Id: Ib0f99a4b86999782bfcf3ccf89375a929cf5127f --- mk2rbc/node.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mk2rbc/node.go b/mk2rbc/node.go index 61aaf91a7..2fa6a85c0 100644 --- a/mk2rbc/node.go +++ b/mk2rbc/node.go @@ -101,7 +101,7 @@ func (i inheritedDynamicModule) entryName() string { func (i inheritedDynamicModule) emitSelect(gctx *generationContext) { if i.needsWarning { gctx.newLine() - gctx.writef("%s.mkwarning(%q, %q)", baseName, i.location, "Including a path with a non-constant prefix, please convert this to a simple literal to generate cleaner starlark.") + gctx.writef("%s.mkwarning(%q, %q)", baseName, i.location, "Including a path with a non-constant prefix, please convert this to a simple literal to generate cleaner starlark. See https://source.android.com/setup/build/bazel/product_config/issues/includes for details.") } gctx.newLine() gctx.writef("_entry = {")