From e526b514d86fbfab587e75756ed4cfe963a420ea Mon Sep 17 00:00:00 2001 From: Felix Bartels Date: Tue, 23 Apr 2024 13:29:11 +0200 Subject: [PATCH] fix: install libyaml-dev to fix build of Ubuntu 22.04 Fixes https://github.com/api7/apisix-build-tools/issues/382 Signed-off-by: Felix Bartels --- utils/install-common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/install-common.sh b/utils/install-common.sh index f007207dd..e5ac75dee 100755 --- a/utils/install-common.sh +++ b/utils/install-common.sh @@ -30,7 +30,7 @@ install_dependencies_rpm() { install_dependencies_deb() { # install basic dependencies DEBIAN_FRONTEND=noninteractive apt-get update - DEBIAN_FRONTEND=noninteractive apt-get install -y wget tar gcc automake autoconf libtool make curl git unzip sudo libreadline-dev lsb-release gawk + DEBIAN_FRONTEND=noninteractive apt-get install -y wget tar gcc automake autoconf libtool make curl git unzip sudo libreadline-dev lsb-release gawk libyaml-dev } install_openresty_deb() {