From 8c3c741439acb817e156fe28083ba0c6a0c4c720 Mon Sep 17 00:00:00 2001 From: Peter Korsgaard Date: Sat, 30 Sep 2023 21:00:24 +0200 Subject: [PATCH] package/opkg-utils: actually install to target Commit b9bf1c6535cb (package/opkg-utils: add opkg-utils as target pkg) misspelled the macro to install to target, most probably as a bad copy-paste from the host macro. Fix that. Reported-by: Michael Hacker Signed-off-by: Peter Korsgaard --- package/opkg-utils/opkg-utils.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/opkg-utils/opkg-utils.mk b/package/opkg-utils/opkg-utils.mk index ad267c5c94..384a7323ee 100644 --- a/package/opkg-utils/opkg-utils.mk +++ b/package/opkg-utils/opkg-utils.mk @@ -16,7 +16,7 @@ HOST_OPKG_UTILS_DEPENDENCIES = \ host-xz # Nothing to build; only scripts to install. -define OPKG_UTILS_INSTALL_CMDS +define OPKG_UTILS_INSTALL_TARGET_CMDS $(MAKE) -C $(@D) PREFIX=$(TARGET_DIR) install-utils endef