From patchwork Tue Sep 24 17:34:33 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kieran Bingham X-Patchwork-Id: 21348 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 0E12FC0F1B for ; Tue, 24 Sep 2024 17:34:41 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 290B76350F; Tue, 24 Sep 2024 19:34:40 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="otGRyYms"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 4274C63500 for ; Tue, 24 Sep 2024 19:34:38 +0200 (CEST) Received: from Monstersaurus.tail69b4.ts.net (cpc89244-aztw30-2-0-cust6594.18-1.cable.virginm.net [86.31.185.195]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 313137E2; Tue, 24 Sep 2024 19:33:11 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1727199191; bh=d88rOAa9/u19bmSEMwvHbBKdp3/hExHI7eHFeWPDDFk=; h=From:To:Cc:Subject:Date:From; b=otGRyYmsp1RkBedbNDzvM1E/8SZwHpbS5NzGhzZDlhC6uLQ42Cb0j7FZJRoOgskGk Y2YRpn4kT0IB6wd+/AsEGnivQd3VZIvUYV7ZFcxP5HArFHojmYPQ+kQwKPjILxExsy bJu3N9wbEapDn3v4pz6RGhIt+TgoS58+bXoBOl6I= From: Kieran Bingham To: libcamera devel Cc: Kieran Bingham Subject: [PATCH] utils: abi-compat: sort meson options Date: Tue, 24 Sep 2024 18:34:33 +0100 Message-Id: <20240924173433.3378703-1-kieran.bingham@ideasonboard.com> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 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" Sort the options passed to meson setup alphabetically when performing a slimline libcamera build. Signed-off-by: Kieran Bingham Reviewed-by: Laurent Pinchart --- This is based on top of https://patchwork.libcamera.org/patch/21347/ Signed-off-by: Kieran Bingham --- utils/abi-compat.sh | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/utils/abi-compat.sh b/utils/abi-compat.sh index a7b2481572bd..31f61e320404 100755 --- a/utils/abi-compat.sh +++ b/utils/abi-compat.sh @@ -156,16 +156,16 @@ create_abi_dump() { # Generate a minimal libcamera build. "lib" and "prefix" are # defined explicitly to avoid system default ambiguities. meson setup "$build" "$worktree" \ - -Dlibdir=lib \ - -Dprefix=/usr/local/ \ - -Ddocumentation=disabled \ -Dcam=disabled \ - -Dqcam=disabled \ - -Dpycamera=disabled \ + -Ddocumentation=disabled \ -Dgstreamer=disabled \ -Dlc-compliance=disabled \ - -Dtracing=disabled \ - -Dpipelines= + -Dlibdir=lib \ + -Dpipelines= \ + -Dprefix=/usr/local/ \ + -Dpycamera=disabled \ + -Dqcam=disabled \ + -Dtracing=disabled ninja -C "$build" DESTDIR="$install" ninja -C "$build" install