diff options
author | luckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com> | 2022-01-26 18:17:00 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-26 18:17:00 -0500 |
commit | faa413eb0e76fad87875b7680f77e0c43df694cd (patch) | |
tree | 43a1382dd7f28807c7b710d383a412254c15ab82 | |
parent | 91078c3e4f446b747d5f931f0c4eb34463077ae9 (diff) |
-rwxr-xr-x | build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4,7 +4,7 @@ CCOPT= CXXOPT= # error if devkitarm is not installed and binutils-arm-none-eabi is not installed -if ! ([ -v DEVKITARM ] && [ -d "$DEVKITARM/bin" ]) && ! (command -v arm-none-eabi-as &> /dev/null && command -v arm-none-eabi-ar &> /dev/null) ; then +if ! ([ -n "$DEVKITARM" ] && [ -d "$DEVKITARM/bin" ]) && ! (command -v arm-none-eabi-as &> /dev/null && command -v arm-none-eabi-ar &> /dev/null) ; then echo "Could not find a binutils installation! Re-read the instructions and make sure you've installed either devkitARM or binutils-arm-none-eabi, depending on your system." exit 1 fi |