projects
/
gtk4.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4e71bd9
)
gdk: Fix up introspection build
author
Matthias Clasen
<mclasen@redhat.com>
Sun, 21 May 2023 13:46:49 +0000
(09:46 -0400)
committer
Matthias 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
patch
|
blob
|
history
diff --git
a/gdk/deprecated/meson.build
b/gdk/deprecated/meson.build
index 12b0b2507646d5d6776bea44230fce406c0c19b7..0d9890df4065e802b132762ca00a70518e10da1a 100644
(file)
--- 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',
+]
)