浏览代码

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 <mh@superbox.one>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Peter Korsgaard 1 年之前
父节点
当前提交
8c3c741439
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      package/opkg-utils/opkg-utils.mk

+ 1 - 1
package/opkg-utils/opkg-utils.mk

@@ -16,7 +16,7 @@ HOST_OPKG_UTILS_DEPENDENCIES = \
 	host-xz
 	host-xz
 
 
 # Nothing to build; only scripts to install.
 # 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
 	$(MAKE) -C $(@D) PREFIX=$(TARGET_DIR) install-utils
 endef
 endef