From 89354c44413d3d7f316f9b6887d9cdf16ad370ec Mon Sep 17 00:00:00 2001 From: WaterWhisperer Date: Thu, 25 Jun 2026 01:13:06 +0800 Subject: [PATCH] runtime-rs: substitute CLH config source placeholder The CLH runtime-rs config template uses @CONFIG_CLH_IN@ in its source-file comment, but CONFIG_CLH_IN was missing from the generated template variables. Add it to USER_VARS so the generated config records the template path instead of keeping the literal placeholder. Fixes: #12941 Signed-off-by: WaterWhisperer --- src/runtime-rs/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/src/runtime-rs/Makefile b/src/runtime-rs/Makefile index 4c482b5800..5e333ea446 100644 --- a/src/runtime-rs/Makefile +++ b/src/runtime-rs/Makefile @@ -603,6 +603,7 @@ endif # list of variables the user may wish to override USER_VARS += ARCH USER_VARS += BINDIR +USER_VARS += CONFIG_CLH_IN USER_VARS += CONFIG_DB_IN USER_VARS += CONFIG_FC_IN USER_VARS += CONFIG_PATH