We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2183cc commit 735fd36Copy full SHA for 735fd36
utils/build-script-impl
@@ -3444,8 +3444,8 @@ function build_and_test_installable_package() {
3444
with_pushd "${host_install_destdir}" \
3445
call tar -c -z -f "${package_for_host}" "${TOOLCHAIN_PREFIX/#\/}"
3446
else
3447
- # tar on OS X doesn't support --owner/--group.
3448
- if [[ "$(uname -s)" == "Darwin" ]] ; then
+ # BSD tar doesn't support --owner/--group.
+ if [[ "$(uname -s)" == "Darwin" || "$(uname -s)" == "FreeBSD" ]] ; then
3449
3450
tar -c -z -f "${package_for_host}" "${host_install_prefix/#\/}"
3451
0 commit comments