aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMirko Vogt <mirko@openwrt.org>2013-01-07 17:11:15 +0000
committerMirko Vogt <mirko@openwrt.org>2013-01-07 17:11:15 +0000
commitd73104d680a3e569c39c9dc5a488f00a4278dc98 (patch)
tree32eed937ff8c88375e4f44088d2d4e706beb7b2d
parent539b5ac46ddae92b26675bebf40a7c23936ef391 (diff)
downloadupstream-d73104d680a3e569c39c9dc5a488f00a4278dc98.tar.gz
upstream-d73104d680a3e569c39c9dc5a488f00a4278dc98.tar.bz2
upstream-d73104d680a3e569c39c9dc5a488f00a4278dc98.zip
fix typo in Makefile
Thanks to Stefan Hellermann for pointing this out! SVN-Revision: 35042
-rw-r--r--package/boot/uboot-xburst/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/boot/uboot-xburst/Makefile b/package/boot/uboot-xburst/Makefile
index 1115d255c3..f4c8ad9197 100644
--- a/package/boot/uboot-xburst/Makefile
+++ b/package/boot/uboot-xburst/Makefile
@@ -53,7 +53,7 @@ endef
ifdef BUILD_VARIANT
$(eval $(call uboot/$(BUILD_VARIANT)))
UBOOT_CONFIG:=$(if $(CONFIG),$(CONFIG),$(BUILD_VARIANT))
-UBOOT_IMAGE:=$(if $(IMAGE),$(IMAGE),openwrt-$(BOARD)-$(BUILD_BARIANT)-u-boot.bin)
+UBOOT_IMAGE:=$(if $(IMAGE),$(IMAGE),openwrt-$(BOARD)-$(BUILD_VARIANT)-u-boot.bin)
endif
define Build/Configure
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182