1
0
Fork 0
mirror of https://github.com/mlocati/docker-php-extension-installer synced 2025-05-09 00:22:40 +00:00

Let users install a smaller but English-only ICU lib (#612)

This commit is contained in:
Michele Locati 2022-07-15 17:13:32 +02:00 committed by GitHub
parent b8195286b3
commit 9a11492f59
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 1 deletions

View file

@ -610,7 +610,12 @@ buildRequiredPackageLists() {
fi
buildRequiredPackageLists_icuPersistent=''
if test $DISTRO_MAJMIN_VERSION -ge 316; then
buildRequiredPackageLists_icuPersistent='icu-data-full'
case "${IPE_ICU_EN_ONLY:-}" in
1 | y* | Y*) ;;
*)
buildRequiredPackageLists_icuPersistent='icu-data-full'
;;
esac
fi
;;
debian@9)