diff options
author | Umang Jain <umang.jain@ideasonboard.com> | 2021-05-07 11:28:40 +0530 |
---|---|---|
committer | Kieran Bingham <kieran.bingham@ideasonboard.com> | 2021-05-11 11:50:45 +0100 |
commit | 17bf7df22762b0ecb64d0c72baed608a90363199 (patch) | |
tree | 70144f7932e8b2e7b1ee7f83c1852c4ccf7faffd /Documentation | |
parent | 99feb66df02988831c9e8535649b99fad9a78069 (diff) |
meson: Replace obselete join_paths() with '/' operator
Since meson v0.49.0, join_paths() is equivalent to '/' hence,
drop and replace it with '/' short-hand in meson files.
This commit does not introduce any functional changes.
Signed-off-by: Umang Jain <umang.jain@ideasonboard.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/meson.build | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Documentation/meson.build b/Documentation/meson.build index 9950465d..a82ee7c8 100644 --- a/Documentation/meson.build +++ b/Documentation/meson.build @@ -1,7 +1,6 @@ # SPDX-License-Identifier: CC0-1.0 -doc_install_dir = join_paths(get_option('datadir'), 'doc', - 'libcamera-@0@'.format(libcamera_version)) +doc_install_dir = get_option('datadir') / 'doc' / 'libcamera-@0@'.format(libcamera_version) # # Doxygen |