From patchwork Fri Dec 21 08:13:11 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kieran Bingham X-Patchwork-Id: 71 Return-Path: Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id C5AFB60B0C for ; Fri, 21 Dec 2018 09:13:21 +0100 (CET) Received: from localhost.localdomain (cpc89242-aztw30-2-0-cust488.18-1.cable.virginm.net [86.31.129.233]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 60277558; Fri, 21 Dec 2018 09:13:21 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1545380001; bh=5OgIhSKjDNYNyMZ+Z5H7jZf3DTE1K42Ixvd2lIa/R1g=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=kptMkLJxFkSxtCGuB+ts29ItHi6TTTcScwJa+9sR7kmNho2+oXk4hHCvImItDrIGv /6UrBQElZx4FEAeR65bejfNj8B3tGDG5JV/e7cAJs697hiequ/yZibxRNGI2zS/ILV NO5nloy50l3tg/hgPQA7tejmPi+cpBlD+DIA9vgU= From: Kieran Bingham To: LibCamera Devel Date: Fri, 21 Dec 2018 08:13:11 +0000 Message-Id: <20181221081311.3291-6-kieran.bingham@ideasonboard.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20181221081311.3291-1-kieran.bingham@ideasonboard.com> References: <20181221081311.3291-1-kieran.bingham@ideasonboard.com> Subject: [libcamera-devel] [PATCH 5/5] meson: Shorten project description X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Dec 2018 08:13:22 -0000 The project description is really the project name. The extraneosly long string gets printed at the test runner prefixed to the suite. As such it should really be the shortened simple project name. Remove the 'description' from the project naming field. Signed-off-by: Kieran Bingham Reviewed-by: Laurent Pinchart --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 7b6e2fec8461..0ab0da981083 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,4 @@ -project('libcamera - supporting complex camera pipelines', 'c', 'cpp', +project('libcamera', 'c', 'cpp', meson_version: '>= 0.40', version : '0.1', license : 'LGPL 2.1+')