[Buildroot] [git commit branch/2023.02.x] package/efivar: don't install in $(HOST_DIR)/usr

Peter Korsgaard peter at korsgaard.com
Sat Apr 22 20:14:54 UTC 2023


commit: https://git.buildroot.net/buildroot/commit/?id=2554f30194d79d2cddce8656487571b5a2a095bd
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/2023.02.x

For years already, $(HOST_DIR)/usr is deprecated. Install directly in
$(HOST_DIR). This will trigger a check-package error in the following
commit.

Signed-off-by: Arnout Vandecappelle <arnout at mind.be>
(cherry picked from commit 47910ccc361934ab4b3fbcfe05530f38de07844f)
Signed-off-by: Peter Korsgaard <peter at korsgaard.com>
---
 package/efivar/efivar.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/efivar/efivar.mk b/package/efivar/efivar.mk
index 8b1d338bec..ee6d7302df 100644
--- a/package/efivar/efivar.mk
+++ b/package/efivar/efivar.mk
@@ -39,7 +39,7 @@ define EFIVAR_BUILD_CMDS
 endef
 
 define HOST_EFIVAR_INSTALL_CMDS
-	$(INSTALL) -D -m 0755 $(@D)/src/makeguids $(HOST_DIR)/usr/bin/makeguids
+	$(INSTALL) -D -m 0755 $(@D)/src/makeguids $(HOST_DIR)/bin/makeguids
 endef
 
 define EFIVAR_INSTALL_STAGING_CMDS



More information about the buildroot mailing list