From 98852c4b7bc4e0b22c3ae23345409927f1f9b592 Mon Sep 17 00:00:00 2001 From: Achim Gsell Date: Mon, 4 Aug 2025 17:11:44 +0200 Subject: [PATCH] build-system: output message with used overlays --- Pmodules/libpbuild.bash | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Pmodules/libpbuild.bash b/Pmodules/libpbuild.bash index 4c88765..24790ba 100644 --- a/Pmodules/libpbuild.bash +++ b/Pmodules/libpbuild.bash @@ -800,6 +800,8 @@ _build_module() { bm::load_overlays(){ [[ -n ${ModuleConfig['use_overlays']} ]] || return 0 + std::info "%s " \ + "using overlays ${ModuleConfig['use_overlays']}" eval "$( "${modulecmd}" bash use ${ModuleConfig['use_overlays']} )" }