From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Mon, 03 Feb 2025 14:17:26 +0100 Received: from metis.whiteo.stw.pengutronix.de ([2a0a:edc0:2:b01:1d::104]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1tewKL-007zNo-2F for lore@lore.pengutronix.de; Mon, 03 Feb 2025 14:17:26 +0100 Received: from localhost ([127.0.0.1] helo=metis.whiteo.stw.pengutronix.de) by metis.whiteo.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1tewKL-0004hR-WD; Mon, 03 Feb 2025 14:17:26 +0100 Received: from dude05.red.stw.pengutronix.de ([2a0a:edc0:0:1101:1d::54]) by metis.whiteo.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1tewK4-0004hD-Oh; Mon, 03 Feb 2025 14:17:08 +0100 From: Michael Tretter To: ptxdist@pengutronix.de Date: Mon, 3 Feb 2025 14:17:08 +0100 Message-Id: <20250203131708.2135868-1-m.tretter@pengutronix.de> X-Mailer: git-send-email 2.39.5 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [ptxdist] [PATCH] v4l-utils: fix libv4l2 dependencies X-BeenThere: ptxdist@pengutronix.de X-Mailman-Version: 2.1.29 Precedence: list List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Cc: Michael Tretter Sender: "ptxdist" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: ptxdist-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.whiteo.stw.pengutronix.de); SAEximRunCond expanded to false If v4l2-ctl and v4l2-compliance are built with libv4l2, they depend on libv4lconvert, too. On the other hand v4l2-dbg, doesn't depend on libv4l2 at all. Fix the dependencies. Signed-off-by: Michael Tretter --- rules/v4l-utils.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rules/v4l-utils.in b/rules/v4l-utils.in index bb444213b7b0..6c5d892906d5 100644 --- a/rules/v4l-utils.in +++ b/rules/v4l-utils.in @@ -81,16 +81,17 @@ config V4L_UTILS_RDSCTL config V4L_UTILS_V4L2COMPLIANCE bool select V4L_UTILS_LIBV4L2 + select V4L_UTILS_LIBV4LCONVERT prompt "install v4l2-compliance" config V4L_UTILS_V4L2DBG bool - select V4L_UTILS_LIBV4L2 prompt "install v4l2-dbg" config V4L_UTILS_V4L2CTL bool select V4L_UTILS_LIBV4L2 + select V4L_UTILS_LIBV4LCONVERT prompt "install v4l2-ctl" config V4L_UTILS_V4L2SYSFSPATH -- 2.39.5