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 dd4d295 commit dabbcbeCopy full SHA for dabbcbe
phases/15-icu.sh
@@ -8,9 +8,10 @@ PROJECT=icu
8
GITHUB_REPO=unicode-org/icu
9
TAG=$(get_latest_github_release_tag $GITHUB_REPO release-)
10
11
-# don't clean project for subsequent builds so that the build for the current
+# don't clean project for subsequent ABIs so that the build for the current
12
# machine is preserved, and because each ABI builds into separate directory
13
-if [ "$NO_UPDATE" = true ]; then
+set -- $ABI_NAMES # splits space-separated ABI list into $1, $2 etc.
14
+if [ "${ABI_NAME}" != "$1" ]; then
15
NO_CLEAN=true
16
fi
17
0 commit comments