Skip to content

Commit a21cc81

Browse files
authored
Merge pull request #25085 from spevans/pr_sr_7039
2 parents 5b3c181 + 976c1f9 commit a21cc81

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
@@ -2116,7 +2116,11 @@ for host in "${ALL_HOSTS[@]}"; do
21162116

21172117
for product in "${PRODUCTS[@]}"; do
21182118
# Check if we should perform this action.
2119-
if ! [[ $(should_execute_action "${host}-${product}-build") ]]; then
2119+
tmp_product=${product}
2120+
if [[ ${tmp_product} == "libdispatch_static" ]]; then
2121+
tmp_product=libdispatch
2122+
fi
2123+
if ! [[ $(should_execute_action "${host}-${tmp_product}-build") ]]; then
21202124
continue
21212125
fi
21222126

@@ -3476,7 +3480,11 @@ for host in "${ALL_HOSTS[@]}"; do
34763480

34773481
for product in "${PRODUCTS[@]}"; do
34783482
# Check if we should perform this action.
3479-
if ! [[ $(should_execute_action "${host}-${product}-install") ]]; then
3483+
tmp_product=${product}
3484+
if [[ ${tmp_product} == "libdispatch_static" ]]; then
3485+
tmp_product=libdispatch
3486+
fi
3487+
if ! [[ $(should_execute_action "${host}-${tmp_product}-install") ]]; then
34803488
continue
34813489
fi
34823490

0 commit comments

Comments
 (0)