diff options
-rwxr-xr-x | qemu_mode/build_qemu_support.sh | 2 | ||||
-rwxr-xr-x | unicorn_mode/build_unicorn_support.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/qemu_mode/build_qemu_support.sh b/qemu_mode/build_qemu_support.sh index a0bd245c..9e45686b 100755 --- a/qemu_mode/build_qemu_support.sh +++ b/qemu_mode/build_qemu_support.sh @@ -90,7 +90,7 @@ if echo "$CC" | grep -qF /afl-; then fi -if [ "$PREREQ_NOTFOUND" == "1" ]; then +if [ "$PREREQ_NOTFOUND" = "1" ]; then exit 1 fi diff --git a/unicorn_mode/build_unicorn_support.sh b/unicorn_mode/build_unicorn_support.sh index ee2f6d77..9d178d06 100755 --- a/unicorn_mode/build_unicorn_support.sh +++ b/unicorn_mode/build_unicorn_support.sh @@ -123,7 +123,7 @@ if echo "$CC" | grep -qF /afl-; then fi -if [ "$PREREQ_NOTFOUND" == "1" ]; then +if [ "$PREREQ_NOTFOUND" = "1" ]; then exit 1 fi |