Skip to content

Commit 4000085

Browse files
committed
[Build System] Move host lipo step after install step
(cherry picked from commit c123f42)
1 parent 07c379c commit 4000085

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

utils/build-script

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -918,6 +918,9 @@ class BuildScriptInvocation(object):
918918
for host_target in all_hosts:
919919
for product_class in impl_product_classes:
920920
self._execute_install_action(host_target, product_class)
921+
922+
# Lipo...
923+
self._execute_merged_host_lipo_action()
921924

922925
# Non-build-script-impl products...
923926
# Note: currently only supports building for the host.
@@ -957,9 +960,6 @@ class BuildScriptInvocation(object):
957960
for host_target in all_hosts:
958961
self._execute_package_action(host_target)
959962

960-
# Lipo...
961-
self._execute_merged_host_lipo_action()
962-
963963
def _execute_build_action(self, host_target, product_class):
964964
action_name = "{}-{}-build".format(host_target.name,
965965
product_class.product_name())

0 commit comments

Comments
 (0)