From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from [2a0a:edc0:0:1101:1d::39] (helo=dude03.red.stw.pengutronix.de) by metis.ext.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1l1XSw-0007Hz-E6 for ptxdist@pengutronix.de; Mon, 18 Jan 2021 17:33:18 +0100 Received: from mtr by dude03.red.stw.pengutronix.de with local (Exim 4.92) (envelope-from ) id 1l1XSv-00B9eA-Sn for ptxdist@pengutronix.de; Mon, 18 Jan 2021 17:33:17 +0100 From: Michael Tretter Date: Mon, 18 Jan 2021 17:33:17 +0100 Message-Id: <20210118163317.2658648-1-m.tretter@pengutronix.de> MIME-Version: 1.0 Subject: [ptxdist] [PATCH] rauc: ignore sysroot in dbus-1 interfaces_dir variable List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ptxdist-bounces@pengutronix.de Sender: "ptxdist" To: ptxdist@pengutronix.de Rauc uses pkg-config to get the interfaces_dir, i.e., the path, where to install the dbus interface description. This path must not contain the sysroot directory, because files will be installed into this path in the package. Signed-off-by: Michael Tretter --- rules/rauc.make | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/rules/rauc.make b/rules/rauc.make index 82b1953f662e..9571400d9995 100644 --- a/rules/rauc.make +++ b/rules/rauc.make @@ -27,7 +27,9 @@ RAUC_LICENSE := LGPL-2.1-only # Prepare # ---------------------------------------------------------------------------- -#RAUC_CONF_ENV := $(CROSS_ENV) +RAUC_CONF_ENV := \ + $(CROSS_ENV) \ + PTXDIST_PKG_CONFIG_VAR_NO_SYSROOT=interfaces_dir # # autoconf -- 2.20.1 _______________________________________________ ptxdist mailing list ptxdist@pengutronix.de To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de