Explorar o código

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>
(cherry picked from commit 8c3c741439acb817e156fe28083ba0c6a0c4c720)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Peter Korsgaard hai 1 ano
pai
achega
fd28c24131
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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
 
 # 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