From patchwork Tue May 10 15:21:07 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kieran Bingham X-Patchwork-Id: 15891 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 1B4C3C0F2A for ; Tue, 10 May 2022 15:20:55 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 4EEDE65644; Tue, 10 May 2022 17:20:53 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=libcamera.org; s=mail; t=1652196053; bh=fGW9/Aota6yAIbCDUREzw832s3s32H+mmiPLm2ILMV8=; h=To:Date:Subject:List-Id:List-Unsubscribe:List-Archive:List-Post: List-Help:List-Subscribe:From:Reply-To:From; b=K5nEqkC55ARzHwZMZVuB8YokKXk8eEAngHuhTCN2vlVmLEqmU24YFRGJNp9pKEZtM ZIMT7i/Hb3m5JgrmSZlnXCAJpo1NwfPLvtyie5I4lnmwKGmzvc9sNqIDWLRBP/4ds1 GFwtvMqxA5NeuezIiEaO2odndMRTiAt6dv8TLBc7Inu44RgRCTBot5V9R4Fx0hRNHo gut/4m4xJU/GsdX8AXaXZqJGhvbKh4EaPBsbar2DuBqCD3hoVtLQO8o8MXQZEDekss ig4WY0Pb2l+OiAp3P633pQ/pIAWeUcKKpAUqtpW/Eguz6d1MVC6n2dA/MsXKCxeKg3 YO/632kTr+2eA== 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 7CA2565643 for ; Tue, 10 May 2022 17:20:51 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="DUJ5XC3s"; dkim-atps=neutral Received: from Q.ksquared.org.uk.beta.tailscale.net (unknown [178.237.134.231]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id E3E0FB60; Tue, 10 May 2022 17:20:50 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1652196051; bh=fGW9/Aota6yAIbCDUREzw832s3s32H+mmiPLm2ILMV8=; h=From:To:Cc:Subject:Date:From; b=DUJ5XC3saWL+rpIXC/iE9GyepsnbmkT7CdZnjsR2E8mBJJwdGqhEbsycnffGt+iEQ fJnMf0huLCBvmmGykdd+PRY1u+8L0FuShedQoy4s8lNh9WDhzLs6rV9MPWIKrK1Gg1 dTJm8yKHtI+tinTn3D0ODKMm4V7wAHcb7j25CD90= To: libcamera devel Date: Tue, 10 May 2022 17:21:07 +0200 Message-Id: <20220510152107.610191-1-kieran.bingham@ideasonboard.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH] py: Fix gen-py-control-enums.py reference 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: , X-Patchwork-Original-From: Kieran Bingham via libcamera-devel From: Kieran Bingham Reply-To: Kieran Bingham Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" Scripts should be referenced using the meson files() directive to ensure the location is correctly identified with the relevant paths. This prevents compilation failures if the working directory does not match the source tree. Fixes: 6e92cb9dc49e ("py: Generate control enums from yaml") Signed-off-by: Kieran Bingham Reviewed-by: Laurent Pinchart Reviewed-by: Umang Jain Reviewed-by: Tomi Valkeinen --- It seems in my testing, that this occurs on meson 57 and below, but wasn't reproduced on meson 58. This fixes the issue anyway, and ensures we are consistent in our usage of scripts internally. --- src/py/libcamera/meson.build | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/py/libcamera/meson.build b/src/py/libcamera/meson.build index 842db1ed3ddd..0cd7c75bb86c 100644 --- a/src/py/libcamera/meson.build +++ b/src/py/libcamera/meson.build @@ -22,10 +22,12 @@ gen_input_files = [ 'pyenums_generated.cpp.in', ] +gen_py_control_enums = files('gen-py-control-enums.py') + generated_sources = custom_target('py_gen_controls', input : gen_input_files, output : ['pyenums_generated.cpp'], - command : ['gen-py-control-enums.py', '-o', '@OUTPUT@', '@INPUT@']) + command : [gen_py_control_enums, '-o', '@OUTPUT@', '@INPUT@']) pycamera_sources += generated_sources