aboutsummaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build3
1 files changed, 2 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index 8699c9f..4b578fd 100644
--- a/meson.build
+++ b/meson.build
@@ -154,7 +154,8 @@ gresources = gnome.compile_resources('resources',
tiff_tables = custom_target('tiff-tables.h',
output : 'tiff-tables.h',
input : 'tiff-tables.db',
- command : ['tiff-tables.awk', '@INPUT@'],
+ # Meson 0.56 chokes on files() as well as on a relative path.
+ command : [meson.current_source_dir() / 'tiff-tables.awk', '@INPUT@'],
capture : true,
)