From 0528bc91f2e537217b91d5b679fe649f17448435 Mon Sep 17 00:00:00 2001 From: Apaczer <94932128+Apaczer@users.noreply.github.com> Date: Wed, 27 Nov 2024 19:24:22 +0100 Subject: [PATCH] DOCKERFILE: install `meson` this adds also `ninja` --- Dockerfile-musl | 2 +- Dockerfile-uclibc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile-musl b/Dockerfile-musl index 178b2ba6..adec501f 100644 --- a/Dockerfile-musl +++ b/Dockerfile-musl @@ -23,7 +23,7 @@ ARG DEBIAN_FRONTEND=noninteractive RUN apt-get update && apt-get install -y libncurses-dev file make cmake gcc g++ \ file wget cpio zip unzip bzip2 rsync bc git \ dosfstools u-boot-tools \ - python3-dev python3-pip swig \ + python3-dev python3-pip swig meson \ vim-tiny && \ apt-get -y autoremove && apt-get -y clean RUN cd /opt/miyoo && ./relocate-sdk.sh diff --git a/Dockerfile-uclibc b/Dockerfile-uclibc index ef54bc4c..fc293fa6 100644 --- a/Dockerfile-uclibc +++ b/Dockerfile-uclibc @@ -23,7 +23,7 @@ ARG DEBIAN_FRONTEND=noninteractive RUN apt-get update && apt-get install -y libncurses-dev file make cmake gcc g++ \ file wget cpio zip unzip bzip2 rsync bc git \ dosfstools u-boot-tools \ - python3-dev python3-pip swig \ + python3-dev python3-pip swig meson \ vim-tiny && \ apt-get -y autoremove && apt-get -y clean RUN cd /opt/miyoo && ./relocate-sdk.sh