From fe5172bb22525bd821fd33f59968b24bf27f3f9e Mon Sep 17 00:00:00 2001 From: Robin Randhawa Date: Fri, 11 Jan 2019 16:17:29 +0000 Subject: [PATCH] bootstrap: Add texinfo as a requirement on Ubuntu texinfo components are needed for building the prefix toolchain. NOTE: Other distros likely need similar mods. --- bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap.sh b/bootstrap.sh index ffc0efd..2f19337 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -168,7 +168,7 @@ ubuntu() echo "Updating system..." sudo "$2" update echo "Installing required packages..." - sudo "$2" install build-essential libc6-dev-i386 nasm curl file git libfuse-dev fuse pkg-config cmake autopoint autoconf libtool m4 syslinux-utils genisoimage flex bison gperf libpng-dev libhtml-parser-perl + sudo "$2" install build-essential libc6-dev-i386 nasm curl file git libfuse-dev fuse pkg-config cmake autopoint autoconf libtool m4 syslinux-utils genisoimage flex bison gperf libpng-dev libhtml-parser-perl texinfo if [ "$1" == "qemu" ]; then if [ -z "$(which qemu-system-x86_64)" ]; then echo "Installing QEMU..."