From 724f4a30c0da7ac40317c7189d673abd35b483de Mon Sep 17 00:00:00 2001 From: MilhouseVH Date: Thu, 25 Apr 2019 21:15:35 +0100 Subject: [PATCH] u-boot-tools-aml: fix dependencies --- packages/tools/u-boot-tools-aml/package.mk | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/packages/tools/u-boot-tools-aml/package.mk b/packages/tools/u-boot-tools-aml/package.mk index 457a9c451f..07f3941019 100644 --- a/packages/tools/u-boot-tools-aml/package.mk +++ b/packages/tools/u-boot-tools-aml/package.mk @@ -6,7 +6,8 @@ PKG_VERSION="2016.03" PKG_SHA256="e49337262ecac44dbdeac140f2c6ebd1eba345e0162b0464172e7f05583ed7bb" PKG_SITE="https://www.denx.de/wiki/U-Boot" PKG_URL="ftp://ftp.denx.de/pub/u-boot/u-boot-$PKG_VERSION.tar.bz2" -PKG_DEPENDS_TARGET="toolchain dtc:host u-boot-tools-aml:host" +PKG_DEPENDS_HOST="gcc:host" +PKG_DEPENDS_TARGET="toolchain u-boot-tools-aml:host" PKG_LICENSE="GPL" PKG_LONGDESC="Das U-Boot is a cross-platform bootloader for embedded systems." @@ -28,9 +29,9 @@ makeinstall_host() { makeinstall_target() { mkdir -p $INSTALL/etc - cp $PKG_DIR/config/fw_env.config $INSTALL/etc/fw_env.config + cp $PKG_DIR/config/fw_env.config $INSTALL/etc/fw_env.config mkdir -p $INSTALL/usr/sbin - cp tools/env/fw_printenv $INSTALL/usr/sbin/fw_printenv - cp tools/env/fw_printenv $INSTALL/usr/sbin/fw_setenv + cp tools/env/fw_printenv $INSTALL/usr/sbin/fw_printenv + cp tools/env/fw_printenv $INSTALL/usr/sbin/fw_setenv }