diff options
author | Michael Hirsch, Ph.D <scivision@users.noreply.github.com> | 2019-02-13 10:32:27 -0500 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2019-05-22 23:56:50 +0300 |
commit | 44b6ccbe569ec8125f1e95e43a5c449e77a04344 (patch) | |
tree | ec35a5c9756450d30e3a327b795779aec0ca7060 /docs/markdown/Installing.md | |
parent | 144e7dcf3bed22f4e6faba8334f3f46eedd420d7 (diff) | |
download | meson-44b6ccbe569ec8125f1e95e43a5c449e77a04344.zip meson-44b6ccbe569ec8125f1e95e43a5c449e77a04344.tar.gz meson-44b6ccbe569ec8125f1e95e43a5c449e77a04344.tar.bz2 |
join_paths => / [skip ci]
Diffstat (limited to 'docs/markdown/Installing.md')
-rw-r--r-- | docs/markdown/Installing.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/markdown/Installing.md b/docs/markdown/Installing.md index 1aa444a..66d090d 100644 --- a/docs/markdown/Installing.md +++ b/docs/markdown/Installing.md @@ -27,7 +27,8 @@ Other install commands are the following. ```meson install_headers('header.h', subdir : 'projname') # -> include/projname/header.h install_man('foo.1') # -> share/man/man1/foo.1 -install_data('datafile.dat', install_dir : join_paths(get_option('datadir'), 'progname')) # -> share/progname/datafile.dat +install_data('datafile.dat', install_dir : get_option('datadir') / 'progname') +# -> share/progname/datafile.dat ``` `install_data()` supports rename of the file *since 0.46.0*. |