summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2014-03-28 20:28:34 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2014-03-28 20:28:34 +0100
commitbe82bbb434d5253588943e916b16f3ad70447463 (patch)
treec93b610d8f1fb24d94f183674fe1e5ec593ed2fe /mk
parent10f2e320f18b3738010128799dc095994d45cc38 (diff)
fix sh big endian, fix x86_64 x32 packaging
Diffstat (limited to 'mk')
-rw-r--r--mk/build.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/mk/build.mk b/mk/build.mk
index f386468f0..884264b38 100644
--- a/mk/build.mk
+++ b/mk/build.mk
@@ -512,7 +512,7 @@ test-framework:
$(GMAKE) VERBOSE=1 all; if [ $$? -ne 0 ]; then touch .exit; exit 1;fi; \
tabi=$$(grep ^ADK_TARGET_ABI= .config|cut -d \" -f 2);\
if [ -z $$tabi ];then abi="";else abi=_$$tabi;fi; \
- qarch=$$(echo $$arch|sed -e "s#armhf#arm#" -e 's#mips64n.*$$#mips64#' -e 's#mips64eln.*$$#mips64el#'); \
+ qarch=$$(echo $$arch|sed -e "s#armhf#arm#" -e 's#mips64n.*$$#mips64#' -e 's#mips64eln.*$$#mips64el#' -e "s#x86_64.*#x86_64#"); \
cp -a root_qemu_$${qarch}_$${libc}$${abi} root; \
mkdir -p $(TOPDIR)/firmware/qemu/$$arch; \
tar cJvf $(TOPDIR)/firmware/qemu/$$arch/root.tar.xz root; \