From 4e80255486433432751820c95c7fd448662bc377 Mon Sep 17 00:00:00 2001 From: Andrea Scarpino Date: Thu, 14 Jul 2022 09:10:55 +0200 Subject: [PATCH 1/2] Update dependencies for Ubuntu 20.04 --- development-1/build-basics.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/development-1/build-basics.md b/development-1/build-basics.md index 31c4e02..acef330 100644 --- a/development-1/build-basics.md +++ b/development-1/build-basics.md @@ -39,7 +39,7 @@ Before you can build, it is important to update the OS and install build depende ```text sudo apt update sudo apt upgrade -sudo apt install gcc make git unzip wget xz-utils bc gperf zip unzip makeinfo g++ mkfontscale mkfontdir bdftopcf xsltproc java +sudo apt install gcc make git unzip wget xz-utils bc gperf zip unzip texinfo g++ xfonts-utils xsltproc openjdk-11-jre-headless ``` Note: The first time the build-system runs it will validate and prompt you to install any missing package dependencies. From fd98f6fe816c23098d00c21d05f38f352492e634 Mon Sep 17 00:00:00 2001 From: Andrea Scarpino Date: Thu, 14 Jul 2022 11:28:20 +0200 Subject: [PATCH 2/2] texinfo is not needed --- development-1/build-basics.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/development-1/build-basics.md b/development-1/build-basics.md index acef330..82db02d 100644 --- a/development-1/build-basics.md +++ b/development-1/build-basics.md @@ -39,7 +39,7 @@ Before you can build, it is important to update the OS and install build depende ```text sudo apt update sudo apt upgrade -sudo apt install gcc make git unzip wget xz-utils bc gperf zip unzip texinfo g++ xfonts-utils xsltproc openjdk-11-jre-headless +sudo apt install gcc make git unzip wget xz-utils bc gperf zip g++ xfonts-utils xsltproc openjdk-11-jre-headless ``` Note: The first time the build-system runs it will validate and prompt you to install any missing package dependencies.