diff options
author | Neal Gompa <ngompa13@gmail.com> | 2020-09-07 11:45:03 -0400 |
---|---|---|
committer | Neal Gompa (ニール・ゴンパ) <ngompa13@gmail.com> | 2020-09-07 11:52:59 -0400 |
commit | a6904b4cd635fc093c30701d71da51eb28fdf618 (patch) | |
tree | c2fd06629975ba012cefb41ab2684eb7286656ec | |
parent | 88cd919d39ebb9f8378de772d2b30813c06b3a6e (diff) |
test: Install required helper files
During the conversion from Autotools to Meson, this part was accidentally
lost, which makes the test backend not work quite right.
This change installs the missing files for the test_spawn part of the
test backend.
-rw-r--r-- | backends/test/helpers/meson.build | 4 | ||||
-rw-r--r-- | backends/test/meson.build | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/backends/test/helpers/meson.build b/backends/test/helpers/meson.build new file mode 100644 index 000000000..486b7620f --- /dev/null +++ b/backends/test/helpers/meson.build @@ -0,0 +1,4 @@ +install_data( + 'search-name.sh', + install_dir: join_paths(get_option('datadir'), 'PackageKit', 'helpers', 'test_spawn'), +) diff --git a/backends/test/meson.build b/backends/test/meson.build index eba7dcdaa..bdf040c05 100644 --- a/backends/test/meson.build +++ b/backends/test/meson.build @@ -1,3 +1,5 @@ +subdir('helpers') + shared_module( 'pk_backend_test_fail', 'pk-backend-test-fail.c', |