Replies: 1 comment 1 reply
-
Because files are not built before the meson.build file is parsed. I am not actually sure why you're using files() at all here. The custom_target "input" kwarg expects a list of things that coerce to files, which includes just using the strings: input: ['script-head', 'fragments/@[email protected]'.format(scriptfoo)] Note that the If you're trying to work around the fact that |
Beta Was this translation helpful? Give feedback.
-
I'm trying to concatenate two files to make a full script, but I don't know why this isn't working:
The error is
../test/meson.build:38:2: ERROR: File /home/andy/src/rmw-project/rmw/builddir/test/fail_restore_files_not_in_waste.sh does not exist.
I have the target set in the
depends
field, so I don't know why it's not getting built so the test can run.Beta Was this translation helpful? Give feedback.
All reactions