Make FreeBSD work with the release script
diff --git a/release.sh b/release.sh
index d18848a..dc5aa12 100755
--- a/release.sh
+++ b/release.sh
@@ -368,11 +368,15 @@
 	vg
 fi
 
-build "$release" "afl-gcc" "" make
+if [ "$run_tests" -ne 0 ]; then
 
-printf '\n'
-printf 'Run %s/tests/randmath.py and the fuzzer.\n' "$scriptdir"
-printf 'Then run the GitHub release script as follows:\n'
-printf '\n'
-printf '    <github_release> %s <msg> dist/ .clang-format release.sh RELEASE.md \\\n' "$version"
-printf '    tests/afl.py tests/bc/scripts/timeconst.bc\n'
+	build "$release" "afl-gcc" "" make
+
+	printf '\n'
+	printf 'Run %s/tests/randmath.py and the fuzzer.\n' "$scriptdir"
+	printf 'Then run the GitHub release script as follows:\n'
+	printf '\n'
+	printf '    <github_release> %s <msg> dist/ .clang-format release.sh RELEASE.md \\\n' "$version"
+	printf '    tests/afl.py tests/bc/scripts/timeconst.bc\n'
+
+fi