From patchwork Tue Nov 24 17:43:40 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 10490 Return-Path: X-Original-To: parsemail@patchwork.libcamera.org Delivered-To: parsemail@patchwork.libcamera.org Received: from lancelot.ideasonboard.com (lancelot.ideasonboard.com [92.243.16.209]) by patchwork.libcamera.org (Postfix) with ESMTPS id 929CABE176 for ; Tue, 24 Nov 2020 17:43:57 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id DEC206340C; Tue, 24 Nov 2020 18:43:55 +0100 (CET) Authentication-Results: lancelot.ideasonboard.com; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="h/nCrFBt"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 46C8963401 for ; Tue, 24 Nov 2020 18:43:54 +0100 (CET) Received: from pendragon.lan (62-78-145-57.bb.dnainternet.fi [62.78.145.57]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id CC9EC183D for ; Tue, 24 Nov 2020 18:43:53 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1606239834; bh=VE3C23kaENsrNnAovS4lzJG90QyerAxPRn6mGuKsPro=; h=From:To:Subject:Date:In-Reply-To:References:From; b=h/nCrFBtsQUKU7I+xPHC9w7hfA27ROgVRxFYjO3enIX3YlPOe/UbIFa6n5fViD18U omBfpvy3kmc4GWQpy5BQ3De7R5yZrsP6LdVBzKq63Q1MTqdmPqDCDzh61FV2d2qyUv xtrbsOoP1nMl6RR7z87wRxCZAa04bv8jSfyj1hUY= From: Laurent Pinchart To: libcamera-devel@lists.libcamera.org Date: Tue, 24 Nov 2020 19:43:40 +0200 Message-Id: <20201124174342.19587-2-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.27.0 In-Reply-To: <20201124174342.19587-1-laurent.pinchart@ideasonboard.com> References: <20201124174342.19587-1-laurent.pinchart@ideasonboard.com> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH 1/3] Documentation: Fix doxygen warning X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" Recent doxygen versions don't appreciate unquoted PROJECT_NUMBER values that contain spaces. Fix this by quoting the string. Signed-off-by: Laurent Pinchart Reviewed-by: Kieran Bingham Reviewed-by: Jacopo Mondi --- 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