From d888bb1902b6d036f34921365bc527a42f01fa8e Mon Sep 17 00:00:00 2001
From: Max Kellermann <max.kellermann@gmail.com>
Date: Sat, 25 Nov 2023 22:16:34 +0100
Subject: [PATCH] io/meson.build: move libfmt dependency to libio.a

---
 src/io/meson.build | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/io/meson.build b/src/io/meson.build
index f9049521d..81b7f2ce8 100644
--- a/src/io/meson.build
+++ b/src/io/meson.build
@@ -15,6 +15,7 @@ io = static_library(
 io_dep = declare_dependency(
   link_with: io,
   dependencies: [
+    fmt_dep,
   ],
 )
 
@@ -33,8 +34,6 @@ io_fs = static_library(
 io_fs_dep = declare_dependency(
   link_with: io_fs,
   dependencies: [
-    fmt_dep,
-    io_dep,
     fs_dep,
   ],
 )