Skip to content

Commit 82b65f9

Browse files
committed
Install missing libraries for Ubuntu.
1 parent f2f0c27 commit 82b65f9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

build.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ echo "Successfully configured. Building now..."
2020
# On my machine, configuration step did not collect all the dependencies
2121
# required to build Qemu. So manually appending them here, even if they
2222
# are present already.
23-
awk -F '=' -i inplace '{ if ($1 == "GIO_LIBS") { print $0 " -lblkid -luuid" } else { print $0 } }' config-host.mak
23+
sudo apt install libblkid-dev libselinux1-dev uuid-dev libmount-dev
24+
#awk -F '=' -i inplace '{ if ($1 == "GIO_LIBS") { print $0 " -lblkid -luuid" } else { print $0 } }' config-host.mak
2425

2526
make -j4

0 commit comments

Comments
 (0)