From af3667d7153063c283f5c271b8ec690d54a08402 Mon Sep 17 00:00:00 2001 From: Brian Smith Date: Sun, 4 Dec 2022 08:07:44 -0600 Subject: [PATCH] No issue - Fix packaging Epyrus on FreeBSD and Solaris. The TwemojiMozilla.ttf font should be bundled on Windows and any GTK platforms. We should not limit the GTK platform to Linux only. --- toolkit/fonts/moz.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toolkit/fonts/moz.build b/toolkit/fonts/moz.build index a2a37879d9..bfdff9e075 100644 --- a/toolkit/fonts/moz.build +++ b/toolkit/fonts/moz.build @@ -3,5 +3,5 @@ # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. -if CONFIG['OS_ARCH'] in ('WINNT', 'Linux'): +if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('windows', 'gtk2', 'gtk3'): FINAL_TARGET_FILES.fonts += ['TwemojiMozilla.ttf']