From: Matthias Clasen Date: Sun, 21 May 2023 13:46:49 +0000 (-0400) Subject: gdk: Fix up introspection build X-Git-Tag: archive/raspbian/4.12.3+ds-1+rpi1~1^2^2^2~22^2~1^2~232^2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=d6fc0d6c94c1327383f2f43d7f5a2a3afaf8f253;p=gtk4.git gdk: Fix up introspection build Referring to files across directories is not easy, we need to use files() in just the right way to make this work. --- diff --git a/gdk/deprecated/meson.build b/gdk/deprecated/meson.build index 12b0b25076..0d9890df40 100644 --- a/gdk/deprecated/meson.build +++ b/gdk/deprecated/meson.build @@ -1,7 +1,7 @@ -gdk_deprecated_sources = [ - 'deprecated/gdkpixbuf.c', -] +gdk_deprecated_sources = files([ + 'gdkpixbuf.c', +]) -gdk_deprecated_headers = [ - 'deprecated/gdkpixbuf.h', -] +gdk_deprecated_headers = files([ + 'gdkpixbuf.h', +])