From 82b65f933f3ee98ad5f879c39451e01e257a5fd1 Mon Sep 17 00:00:00 2001 From: Artyom Gevorgyan Date: Sat, 3 Oct 2020 11:47:01 +0300 Subject: [PATCH] Install missing libraries for Ubuntu. --- build.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.sh b/build.sh index fc46a06..f5436ab 100755 --- a/build.sh +++ b/build.sh @@ -20,6 +20,7 @@ echo "Successfully configured. Building now..." # On my machine, configuration step did not collect all the dependencies # required to build Qemu. So manually appending them here, even if they # are present already. -awk -F '=' -i inplace '{ if ($1 == "GIO_LIBS") { print $0 " -lblkid -luuid" } else { print $0 } }' config-host.mak +sudo apt install libblkid-dev libselinux1-dev uuid-dev libmount-dev +#awk -F '=' -i inplace '{ if ($1 == "GIO_LIBS") { print $0 " -lblkid -luuid" } else { print $0 } }' config-host.mak make -j4