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>
This commit is contained in:
parent
99feb66df0
commit
17bf7df227
9 changed files with 14 additions and 16 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue