From 49b6526a38ba549f0f68f9eb8aa0a210c516c7f0 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Sun, 15 Feb 2026 20:18:34 +0900 Subject: [PATCH] internal/rosa: remove redundant meson flags These have no effect. Signed-off-by: Ophestra --- internal/rosa/kmod.go | 1 - internal/rosa/wayland.go | 2 -- 2 files changed, 3 deletions(-) diff --git a/internal/rosa/kmod.go b/internal/rosa/kmod.go index c32e416..2ac319d 100644 --- a/internal/rosa/kmod.go +++ b/internal/rosa/kmod.go @@ -21,7 +21,6 @@ func (t Toolchain) newKmod() pkg.Artifact { }, nil, nil, ` cd "$(mktemp -d)" meson setup \ - --reconfigure \ --buildtype=release \ --prefix=/system \ -Dsysconfdir=/system/etc \ diff --git a/internal/rosa/wayland.go b/internal/rosa/wayland.go index 48ab9a6..10531ea 100644 --- a/internal/rosa/wayland.go +++ b/internal/rosa/wayland.go @@ -26,10 +26,8 @@ echo 'int main(){}' > tests/sanity-test.c cd "$(mktemp -d)" meson setup \ - --reconfigure \ --buildtype=release \ --prefix=/system \ - --prefer-static \ -Ddocumentation=false \ -Dtests=true \ -Ddefault_library=both \