Skip to content

Commit 976c1f9

Browse files
committed
SR-7039: Build and install libdispatch static libraries
1 parent 9e819ea commit 976c1f9

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

utils/build-script-impl

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2113,7 +2113,11 @@ for host in "${ALL_HOSTS[@]}"; do
21132113

21142114
for product in "${PRODUCTS[@]}"; do
21152115
# Check if we should perform this action.
2116-
if ! [[ $(should_execute_action "${host}-${product}-build") ]]; then
2116+
tmp_product=${product}
2117+
if [[ ${tmp_product} == "libdispatch_static" ]]; then
2118+
tmp_product=libdispatch
2119+
fi
2120+
if ! [[ $(should_execute_action "${host}-${tmp_product}-build") ]]; then
21172121
continue
21182122
fi
21192123

@@ -3463,7 +3467,11 @@ for host in "${ALL_HOSTS[@]}"; do
34633467

34643468
for product in "${PRODUCTS[@]}"; do
34653469
# Check if we should perform this action.
3466-
if ! [[ $(should_execute_action "${host}-${product}-install") ]]; then
3470+
tmp_product=${product}
3471+
if [[ ${tmp_product} == "libdispatch_static" ]]; then
3472+
tmp_product=libdispatch
3473+
fi
3474+
if ! [[ $(should_execute_action "${host}-${tmp_product}-install") ]]; then
34673475
continue
34683476
fi
34693477

0 commit comments

Comments
 (0)