From 7454a5b88af742471d903284de902797707ac29c Mon Sep 17 00:00:00 2001 From: Prabhatkumar59 <167855894+Prabhatkumar59@users.noreply.github.com> Date: Thu, 6 Feb 2025 21:17:02 +0530 Subject: [PATCH] [Ubuntu24] adding libicu package version 70 (#11547) Co-authored-by: Prabhat kumar --- images/ubuntu/scripts/build/configure-dpkg.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/images/ubuntu/scripts/build/configure-dpkg.sh b/images/ubuntu/scripts/build/configure-dpkg.sh index 2c5237211..39eaf4647 100644 --- a/images/ubuntu/scripts/build/configure-dpkg.sh +++ b/images/ubuntu/scripts/build/configure-dpkg.sh @@ -6,7 +6,7 @@ # Source the helpers for use with the script source $HELPER_SCRIPTS/etc-environment.sh - +source $HELPER_SCRIPTS/os.sh # This is the anti-frontend. It never interacts with you at all, # and makes the default answers be used for all questions. It # might mail error messages to root, but that's it; otherwise it @@ -30,3 +30,9 @@ cat <> /etc/apt/apt.conf.d/10apt-autoremove APT::Get::AutomaticRemove "0"; APT::Get::HideAutoRemove "1"; EOF + +# Install libicu70 package for Ubuntu 24 +if is_ubuntu24 ; then + wget http://archive.ubuntu.com/ubuntu/pool/main/i/icu/libicu70_70.1-2_amd64.deb + sudo apt-get install -y ./libicu70_70.1-2_amd64.deb +fi