[libcamera-devel,1/3] Documentation: Fix doxygen warning
diff mbox series

Message ID 20201124174342.19587-2-laurent.pinchart@ideasonboard.com
State Accepted
Headers show
Series
  • qcam: Miscellaneous patches
Related show

Commit Message

Laurent Pinchart Nov. 24, 2020, 5:43 p.m. UTC
Recent doxygen versions don't appreciate unquoted PROJECT_NUMBER values
that contain spaces. Fix this by quoting the string.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
---
 Documentation/Doxyfile.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Kieran Bingham Nov. 24, 2020, 7:07 p.m. UTC | #1
On 24/11/2020 17:43, Laurent Pinchart wrote:
> Recent doxygen versions don't appreciate unquoted PROJECT_NUMBER values
> that contain spaces. Fix this by quoting the string.
> 
> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>

Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>

> ---
>  Documentation/Doxyfile.in | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/Documentation/Doxyfile.in b/Documentation/Doxyfile.in
> index 87959e23ce28..4bbacc464a5e 100644
> --- a/Documentation/Doxyfile.in
> +++ b/Documentation/Doxyfile.in
> @@ -39,7 +39,7 @@ PROJECT_NAME           = "libcamera"
>  # could be handy for archiving the generated documentation or if some version
>  # control system is used.
>  
> -PROJECT_NUMBER         = @VERSION@
> +PROJECT_NUMBER         = "@VERSION@"
>  
>  # Using the PROJECT_BRIEF tag one can provide an optional one line description
>  # for a project that appears at the top of each page and should give viewer a
>
Jacopo Mondi Nov. 24, 2020, 8:28 p.m. UTC | #2
Hi Laurent

On Tue, Nov 24, 2020 at 07:43:40PM +0200, Laurent Pinchart wrote:
> Recent doxygen versions don't appreciate unquoted PROJECT_NUMBER values
> that contain spaces. Fix this by quoting the string.
>
> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>

Reviewed-by: Jacopo Mondi <jacopo@jmondi.org>

Thanks
  j

> ---
>  Documentation/Doxyfile.in | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/Documentation/Doxyfile.in b/Documentation/Doxyfile.in
> index 87959e23ce28..4bbacc464a5e 100644
> --- a/Documentation/Doxyfile.in
> +++ b/Documentation/Doxyfile.in
> @@ -39,7 +39,7 @@ PROJECT_NAME           = "libcamera"
>  # could be handy for archiving the generated documentation or if some version
>  # control system is used.
>
> -PROJECT_NUMBER         = @VERSION@
> +PROJECT_NUMBER         = "@VERSION@"
>
>  # Using the PROJECT_BRIEF tag one can provide an optional one line description
>  # for a project that appears at the top of each page and should give viewer a
> --
> Regards,
>
> Laurent Pinchart
>
> _______________________________________________
> libcamera-devel mailing list
> libcamera-devel@lists.libcamera.org
> https://lists.libcamera.org/listinfo/libcamera-devel

Patch
diff mbox series

diff --git a/Documentation/Doxyfile.in b/Documentation/Doxyfile.in
index 87959e23ce28..4bbacc464a5e 100644
--- a/Documentation/Doxyfile.in
+++ b/Documentation/Doxyfile.in
@@ -39,7 +39,7 @@  PROJECT_NAME           = "libcamera"
 # could be handy for archiving the generated documentation or if some version
 # control system is used.
 
-PROJECT_NUMBER         = @VERSION@
+PROJECT_NUMBER         = "@VERSION@"
 
 # Using the PROJECT_BRIEF tag one can provide an optional one line description
 # for a project that appears at the top of each page and should give viewer a