summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorP. J. McDermott <pj@pehjota.net>2014-05-07 20:40:00 (EDT)
committer P. J. McDermott <pj@pehjota.net>2014-05-07 20:40:00 (EDT)
commitbebb6c4b47ddd289a61c553dc0ebc095c61bff29 (patch)
tree61b345024b47b7a1fb55c7cbb1618d218a0670db
parent200c9adb967df96d3c044ffe2bed25c63a388e8b (diff)
build: Fix KBUILD_ARCH macro expansion.
-rwxr-xr-xbuild2
1 files changed, 1 insertions, 1 deletions
diff --git a/build b/build
index f2ae58d..b08fa96 100755
--- a/build
+++ b/build
@@ -18,7 +18,7 @@ install:
set -e; \
if [ 'x$(OPK_HOST_PLAT)' != 'xdev' ]; then \
read img_src img_dest <image; \
- install -D "src/arch/$${KBUILD_ARCH}/boot/$${img_src}" \
+ install -D "src/arch/$(KBUILD_ARCH)/boot/$${img_src}" \
linux-image.data/boot/$${img_dest}; \
install -D src/System.map \
linux-sysmap.data/boot/System.map; \