From 4c91f7c7e5cc5117729fa91982e01618289833ca Mon Sep 17 00:00:00 2001 From: Tom Dewey <146750643+tdewey-rpi@users.noreply.github.com> Date: Tue, 3 Oct 2023 09:46:18 +0100 Subject: [PATCH] Add liblzma-dev to Debian instructions Turns out we actually require liblzma-dev, and without it we will fail to configure CMake with default options. So let's add it to the readme. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 64dd1f2..25fbc12 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ For the embedded (netboot) build see also "embedded/legal-info" for more informa Install the build dependencies: ``` -sudo apt install --no-install-recommends build-essential devscripts debhelper cmake git libarchive-dev libcurl4-gnutls-dev \ +sudo apt install --no-install-recommends build-essential devscripts debhelper cmake git libarchive-dev libcurl4-gnutls-dev liblzma-dev \ qtbase5-dev qtbase5-dev-tools qtdeclarative5-dev libqt5svg5-dev qttools5-dev libgnutls28-dev \ qml-module-qtquick2 qml-module-qtquick-controls2 qml-module-qtquick-layouts qml-module-qtquick-templates2 qml-module-qtquick-window2 qml-module-qtgraphicaleffects ```