diff options
| author | Andres Freund | 2023-03-24 04:20:18 +0000 |
|---|---|---|
| committer | Andres Freund | 2023-03-24 04:20:18 +0000 |
| commit | 614c5f5f52d53d0b3ed3a829ebf7f5ebd53e7a5a (patch) | |
| tree | ac79a921819c15a93ab2d2aaf256ccb840d4ad6b /meson.build | |
| parent | 0f0a7183d7d8632a2bbcdad796580b4cc541c639 (diff) | |
meson: make install_test_files more generic, rename to install_files
Now it supports installing directories and directory contents as well. This
will be used in a subsequent patch to install documentation.
Discussion: https://postgr.es/m/3fc3bb9b-f7f8-d442-35c1-ec82280c564a@enterprisedb.com
Diffstat (limited to 'meson.build')
| -rw-r--r-- | meson.build | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/meson.build b/meson.build index 7f76a101ec..84fe2c3d4c 100644 --- a/meson.build +++ b/meson.build @@ -369,6 +369,8 @@ flex_cmd = [python, flex_wrapper, wget = find_program('wget', required: false, native: true) wget_flags = ['-O', '@OUTPUT0@', '--no-use-server-timestamps'] +install_files = files('src/tools/install_files') + ############################################################### @@ -2845,9 +2847,8 @@ testprep_targets += test_install_libs # command to install files used for tests, which aren't installed by default -install_test_files = files('src/tools/install_test_files') install_test_files_args = [ - install_test_files, + install_files, '--prefix', dir_prefix, '--install', contrib_data_dir, test_install_data, '--install', dir_lib_pkg, test_install_libs, |
