diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2009-01-21 15:49:06 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2009-01-21 15:49:06 +0000 |
commit | a5e5bdd51b6c5f53551abc4d0d265ec3517ee111 (patch) | |
tree | 5d921d2edb63b3c6fab17471e2387b71045429d5 /target | |
parent | 87d040ee5038e7cec53e4bce6df9aa3ee6d2dbeb (diff) | |
download | buildroot-novena-a5e5bdd51b6c5f53551abc4d0d265ec3517ee111.tar.gz buildroot-novena-a5e5bdd51b6c5f53551abc4d0d265ec3517ee111.zip |
u-boot: unbreak target tools
Got broken by r24697.
Diffstat (limited to 'target')
-rw-r--r-- | target/u-boot/Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/target/u-boot/Makefile.in b/target/u-boot/Makefile.in index 77481760f..ea07b2a8c 100644 --- a/target/u-boot/Makefile.in +++ b/target/u-boot/Makefile.in @@ -21,7 +21,7 @@ U_BOOT_TOOLS:=$(STAGING_DIR)/usr/bin/$(U_BOOT_TOOLS_BIN) MKIMAGE:=$(U_BOOT_TOOLS) U_BOOT_AUTOSCRIPT=$(BINARIES_DIR)/autoscript -U_BOOT_TARGETS:=$(BINARIES_DIR)/$(U_BOOT_BIN) $(U_BOOT_TOOLS) $(U_BOOT_TARGET_TOOLS) +U_BOOT_TARGETS:=$(BINARIES_DIR)/$(U_BOOT_BIN) $(U_BOOT_TOOLS) ifeq ($(strip $(subst ",,$(BR2_TARGET_UBOOT_DEFAULT_ENV))),y) #")) @@ -54,10 +54,10 @@ endif U_BOOT_TARGET_TOOLS:= ifeq ($(BR2_TARGET_UBOOT_TOOL_MKIMAGE),y) -U_BOOT_TARGET_TOOLS+=$(TARGET_DIR)/usr/bin/mkimage +U_BOOT_TARGETS+=$(TARGET_DIR)/usr/bin/mkimage endif ifeq ($(BR2_TARGET_UBOOT_TOOL_ENV),y) -U_BOOT_TARGET_TOOLS+=$(TARGET_DIR)/usr/sbin/fw_printenv +U_BOOT_TARGETS+=$(TARGET_DIR)/usr/sbin/fw_printenv endif U_BOOT_CONFIGURE_OPTS := |