gdk: Fix up introspection build
authorMatthias Clasen <mclasen@redhat.com>
Sun, 21 May 2023 13:46:49 +0000 (09:46 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Sun, 21 May 2023 13:46:49 +0000 (09:46 -0400)
Referring to files across directories is not
easy, we need to use files() in just the right
way to make this work.

gdk/deprecated/meson.build

index 12b0b2507646d5d6776bea44230fce406c0c19b7..0d9890df4065e802b132762ca00a70518e10da1a 100644 (file)
@@ -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',
+])