commit e6b7ca6ede5daa526255391d9ed2570f4f828e6f
parent 3df3d5455ddde27a0a1c0095c580e0b6d15c2565
Author: Martin Schanzenbach <schanzen@gnunet.org>
Date: Thu, 30 Apr 2026 11:48:03 +0200
build: fix dependency on copied files
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/doc/meson.build b/doc/meson.build
@@ -69,7 +69,7 @@ if makeinfo.found()
foreach f : ['taler-auditor', 'taler-developer-manual', 'taler-exchange']
f_texi = '@0@.texi'.format(f)
- fs.copyfile('prebuilt' / 'texinfo' / f_texi, f_texi)
+ f_texi_tgt = fs.copyfile('prebuilt' / 'texinfo' / f_texi, f_texi)
f_info = '@0@.info'.format(f)
@@ -84,6 +84,7 @@ if makeinfo.found()
'-o',
'@OUTPUT0@',
],
+ depends: [f_texi_tgt],
install: true,
install_dir: get_option('infodir'),
)