Skip to content

Commit 9a5e180

Browse files
committed
Fix build on armv7l or aarch64 that still need qemu
1 parent 3143f2c commit 9a5e180

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/custompios

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ function execute_chroot_script() {
2727

2828
#black magic of qemu-arm-static
2929
# cp `which qemu-arm-static` usr/bin
30-
if [ "$(uname -m)" != "armv7l" ] && [ "$(uname -m)" != "aarch64" ] ; then
30+
if [ "$(uname -m)" != "armv7l" ] || [ "$(uname -m)" != "aarch64" ] ; then
3131
if [ "$BASE_ARCH" == "armv7l" ]; then
3232
if (grep -q gentoo /etc/os-release);then
3333
ROOT="`realpath .`" emerge --usepkgonly --oneshot --nodeps qemu

0 commit comments

Comments
 (0)