diff options
| author | Jussi Pakkanen <jpakkane@gmail.com> | 2016-04-09 12:04:06 +0300 |
|---|---|---|
| committer | Jussi Pakkanen <jpakkane@gmail.com> | 2016-04-09 12:04:06 +0300 |
| commit | 48e678db76948cc4b02369b64bc072810535f12f (patch) | |
| tree | 5336ea79f1b0fd9261d47096c960ffd080944881 /test cases/common/12 data | |
| parent | 804a3ca72a6b65b3abeba18a292ea592654db03c (diff) | |
| download | meson-48e678db76948cc4b02369b64bc072810535f12f.tar.gz | |
Strip leading source tree dir name from install files if it exists.
Diffstat (limited to 'test cases/common/12 data')
| -rw-r--r-- | test cases/common/12 data/installed_files.txt | 1 | ||||
| -rw-r--r-- | test cases/common/12 data/meson.build | 3 | ||||
| -rw-r--r-- | test cases/common/12 data/vanishing/vanishing2.dat | 4 |
3 files changed, 8 insertions, 0 deletions
diff --git a/test cases/common/12 data/installed_files.txt b/test cases/common/12 data/installed_files.txt index 1c58623f2..3d4b12c31 100644 --- a/test cases/common/12 data/installed_files.txt +++ b/test cases/common/12 data/installed_files.txt @@ -1,3 +1,4 @@ usr/share/progname/datafile.dat usr/share/progname/vanishing.dat +usr/share/progname/vanishing2.dat etc/etcfile.dat diff --git a/test cases/common/12 data/meson.build b/test cases/common/12 data/meson.build index 2193f94d2..80f38354c 100644 --- a/test cases/common/12 data/meson.build +++ b/test cases/common/12 data/meson.build @@ -1,4 +1,7 @@ project('data install test', 'c') install_data(sources : 'datafile.dat', install_dir : 'share/progname') install_data(sources : 'etcfile.dat', install_dir : '/etc') + subdir('vanishing') + +install_data(sources : 'vanishing/vanishing2.dat', install_dir : 'share/progname') diff --git a/test cases/common/12 data/vanishing/vanishing2.dat b/test cases/common/12 data/vanishing/vanishing2.dat new file mode 100644 index 000000000..99c923b88 --- /dev/null +++ b/test cases/common/12 data/vanishing/vanishing2.dat @@ -0,0 +1,4 @@ +This is a data file to be installed in a subdirectory. + +It is installed from a different subdir to test that the +installer strips the source tree dir prefix. |
