build-support: Use equivalent valid exit code

`exit -1` is equivalent to `exit 255`, since Bash does modulo 256 on the
number.

As per ShellCheck:

> SC2242 (error): Can only exit with status 0-255. Other data should be
> written to stdout/stderr.

+1 -1
+1 -1
pkgs/build-support/bintools-wrapper/macos-sierra-reexport-hack.bash
··· 136 norm=("${norm[@]:1}") 137 else 138 echo "ld-wrapper: Internal Error: Invalid normalized argument" >&2 139 - exit -1 140 fi 141 ;; 142 esac
··· 136 norm=("${norm[@]:1}") 137 else 138 echo "ld-wrapper: Internal Error: Invalid normalized argument" >&2 139 + exit 255 140 fi 141 ;; 142 esac