From db09147679443f2358d070d28cf1e6ba903f5a81 Mon Sep 17 00:00:00 2001 From: Ross Burton Date: Mon, 12 Apr 2021 17:31:14 +0100 Subject: [PATCH] Don't check for native dependencies as target dependencies Don't look for cairo, fontconfig, and freetype libraries as this will look for *target* libraries. The presence of these libraries is used as a proxy for the gobject-introspection libraries being available for the make-images.py script, but as this runs at build time we don't care about target libraries at all. Luckily there's another script, test-deps.py, which looks for the g-i libraries so these dependencies can be removed. --- meson.build | 3 --- 1 file changed, 3 deletions(-) diff --git a/meson.build b/meson.build index 7e6231593..4776b3d8c 100644 --- a/meson.build +++ b/meson.build @@ -361,9 +361,6 @@ else endif if build_standalone and get_option('plugin_uefi_capsule') - cairo = dependency('cairo') - fontconfig = cc.find_library('fontconfig') - freetype = cc.find_library('freetype') efiboot = dependency('efiboot') objcopy = find_program ('objcopy') genpeimg = find_program ('genpeimg', required: false)