From a2c02e427dbca1a63588e89255241e9e217e9858 Mon Sep 17 00:00:00 2001 From: thelamer Date: Tue, 7 Apr 2026 11:18:30 -0400 Subject: [PATCH] update build logic to not point to specific translation at build time and use old default behavior --- Dockerfile | 2 +- Dockerfile.aarch64 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 85f55a3..f7146d5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,7 +21,7 @@ RUN \ cd /tmp && \ tar -xf resynth.tar.gz && \ cd resynthesizer-* && \ - meson setup resynthesizerBuild && \ + meson setup resynthesizerBuild -Dinstall-translations=false && \ cd resynthesizerBuild && \ meson compile --verbose -j $(nproc) && \ DESTDIR=/buildout meson install && \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 4292966..436f228 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -21,7 +21,7 @@ RUN \ cd /tmp && \ tar -xf resynth.tar.gz && \ cd resynthesizer-* && \ - meson setup resynthesizerBuild && \ + meson setup resynthesizerBuild -Dinstall-translations=false && \ cd resynthesizerBuild && \ meson compile --verbose -j $(nproc) && \ DESTDIR=/buildout meson install && \