Add dos2unix to ubuntu bootstrap

This commit is contained in:
Jeremy Soller 2023-09-11 09:28:25 -06:00
parent ecaac1b327
commit 0ddacf08f7
No known key found for this signature in database
GPG key ID: DCFCA852D3906975

View file

@ -361,6 +361,7 @@ ubuntu()
echo "Installing required packages..."
pkgs="\
ant \
autoconf \
automake \
autopoint \
bison \
@ -368,6 +369,7 @@ ubuntu()
clang \
cmake \
curl \
dos2unix \
doxygen \
file \
flex \
@ -380,6 +382,7 @@ ubuntu()
libgmp-dev \
libhtml-parser-perl \
libjpeg-dev \
libmpfr-dev \
libpng-dev \
libsdl1.2-dev \
libsdl2-ttf-dev \
@ -403,11 +406,9 @@ ubuntu()
unzip \
wget \
xdg-utils \
xxd \
zip \
autoconf \
libmpfr-dev \
xxd \
"
"
# Not availible for at least ARM hosts
case "$host_arch" in
x86*|i?86) pkgs="$pkgs libc6-dev-i386 syslinux-utils";;