From mboxrd@z Thu Jan 1 00:00:00 1970 From: Yann E. MORIN Date: Tue, 30 Mar 2021 21:55:51 +0200 Subject: [Buildroot] [git commit] package/pkg-kconfig: fix error string Message-ID: <20210330193106.477968AC01@busybox.osuosl.org> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: buildroot@busybox.net commit: https://git.buildroot.net/buildroot/commit/?id=a7348f0f7de1021ea578cd81784e70b1832adb79 branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master Current error string speaks only about "fragment" but here we also deal with Kconfig files, so let's add "file or fragment" instead of "fragment". Signed-off-by: Giulio Benetti Signed-off-by: Yann E. MORIN --- package/pkg-kconfig.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/pkg-kconfig.mk b/package/pkg-kconfig.mk index 2aecf2e203..dd727b7200 100644 --- a/package/pkg-kconfig.mk +++ b/package/pkg-kconfig.mk @@ -117,7 +117,7 @@ $(2)_KCONFIG_STAMP_DOTCONFIG = .stamp_dotconfig $$($(2)_KCONFIG_FILE) $$($(2)_KCONFIG_FRAGMENT_FILES): | $(1)-patch for f in $$($(2)_KCONFIG_FILE) $$($(2)_KCONFIG_FRAGMENT_FILES); do \ if [ ! -f "$$$${f}" ]; then \ - printf "Kconfig fragment '%s' for '%s' does not exist\n" "$$$${f}" "$(1)"; \ + printf "Kconfig file or fragment '%s' for '%s' does not exist\n" "$$$${f}" "$(1)"; \ exit 1; \ fi; \ done