diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2023-06-10 11:52:11 +0200 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2023-06-10 11:52:49 +0200 |
commit | 1577961aa2d8d8e37df82b2179e8b843f03cbf7d (patch) | |
tree | cea20f5b38398683ec18624d88871c8b0072a401 /meson.build | |
parent | 1fb42e689f01d45fbe1f6ed078156c36bf37d9de (diff) | |
download | fiv-1577961aa2d8d8e37df82b2179e8b843f03cbf7d.tar.gz fiv-1577961aa2d8d8e37df82b2179e8b843f03cbf7d.tar.xz fiv-1577961aa2d8d8e37df82b2179e8b843f03cbf7d.zip |
Improve compatibility with older dependencies
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 3 |
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, ) |