File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -3082,6 +3082,11 @@ for host in "${ALL_HOSTS[@]}"; do
3082
3082
host_install_destdir=$( get_host_install_destdir ${host} )
3083
3083
host_install_prefix=$( get_host_install_prefix ${host} )
3084
3084
3085
+ # Skip this pass if flag is set and we are cross compiling and it's the local host.
3086
+ if [[ " ${SKIP_LOCAL_HOST_INSTALL} " ]] && [[ $( has_cross_compile_hosts) ]] && [[ ${host} == ${LOCAL_HOST} ]]; then
3087
+ continue
3088
+ fi
3089
+
3085
3090
# Identify the destdirs to pass to lipo. Must happen even if the install action
3086
3091
# is to be skipped.
3087
3092
if [[ $( should_include_host_in_lipo ${host} ) ]]; then
@@ -3093,11 +3098,6 @@ for host in "${ALL_HOSTS[@]}"; do
3093
3098
continue
3094
3099
fi
3095
3100
3096
- # Skip this pass if flag is set and we are cross compiling and it's the local host.
3097
- if [[ " ${SKIP_LOCAL_HOST_INSTALL} " ]] && [[ $( has_cross_compile_hosts) ]] && [[ ${host} == ${LOCAL_HOST} ]]; then
3098
- continue
3099
- fi
3100
-
3101
3101
# Set the build options for this host
3102
3102
set_build_options_for_host $host
3103
3103
You can’t perform that action at this time.
0 commit comments