From 46113cc659a5c03d5dafcc8b26595b6ac996139e Mon Sep 17 00:00:00 2001 From: stormdragon2976 Date: Wed, 18 Jan 2023 00:31:23 -0500 Subject: [PATCH] Started updates for the Pi3 build script. --- pi3/build/build-stormux.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pi3/build/build-stormux.sh b/pi3/build/build-stormux.sh index b5fa0c8..9a06391 100755 --- a/pi3/build/build-stormux.sh +++ b/pi3/build/build-stormux.sh @@ -112,12 +112,12 @@ fi # make sure the needed tools are installed if [[ "$(uname -m)" == "x86_64" ]]; then - if ! pacman -Q qemu-user-static &> /dev/null ; then - echo "Please install qemu-user-static and binfmt-qemu-static before continuing." +if ! pacman -Q qemu-user-static &> /dev/null ; then + echo "Please install qemu-user-static and qemu-user-static-binfmt before continuing." exit 1 fi - if ! pacman -Q binfmt-qemu-static &> /dev/null ; then - echo "Please install qemu-user-static and binfmt-qemu-static before continuing." + if ! pacman -Q qemu-user-static-binfmt &> /dev/null ; then + echo "Please install qemu-user-static and qemu-user-static-binfmt before continuing." exit 1 fi fi