From da92f8163d866f5eac472c6fc079fd14fe12ee5e Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Sat, 2 Jan 2021 19:52:42 +0100 Subject: [PATCH] build system: change link order for common libraries vs libebml/matroska Helpful for when I want to use fmt in libebml/matroska temporarily. --- Rakefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Rakefile b/Rakefile index 4297f35b6..2a1d09e74 100644 --- a/Rakefile +++ b/Rakefile @@ -1057,10 +1057,10 @@ $common_libs += [:cmark] if c?(:USE_QT) $common_libs += [:dvdread] if c?(:USE_DVDREAD) $common_libs += [:exchndl] if c?(:USE_DRMINGW) && $building_for[:windows] if !$libmtxcommon_as_dll - $common_libs += [ + $common_libs = [ :matroska, :ebml, - ] + ] + $common_libs end $common_libs += [ :CoreFoundation ] if $building_for[:macos]