Message ID | 20190704145942.17879-7-kieran.bingham@ideasonboard.com |
---|---|
State | Accepted |
Headers | show |
Series |
|
Related | show |
Hi Kieran, Thank you for the patch. On Thu, Jul 04, 2019 at 03:59:42PM +0100, Kieran Bingham wrote: > The doc_install_dir is longer than 80 chars. Wrap it accordingly. > > Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> > --- > Documentation/meson.build | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/Documentation/meson.build b/Documentation/meson.build > index 2db80b39989b..c355d5feb504 100644 > --- a/Documentation/meson.build > +++ b/Documentation/meson.build > @@ -1,4 +1,5 @@ > -doc_install_dir = join_paths(get_option('datadir'), 'doc', 'libcamera-@0@'.format(meson.project_version())) > +doc_install_dir = join_paths(get_option('datadir'), 'doc', > + 'libcamera-@0@'.format(meson.project_version())) > > # > # Doxygen
diff --git a/Documentation/meson.build b/Documentation/meson.build index 2db80b39989b..c355d5feb504 100644 --- a/Documentation/meson.build +++ b/Documentation/meson.build @@ -1,4 +1,5 @@ -doc_install_dir = join_paths(get_option('datadir'), 'doc', 'libcamera-@0@'.format(meson.project_version())) +doc_install_dir = join_paths(get_option('datadir'), 'doc', + 'libcamera-@0@'.format(meson.project_version())) # # Doxygen
The doc_install_dir is longer than 80 chars. Wrap it accordingly. Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com> --- Documentation/meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)