From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Fri, 24 Jun 2022 12:07:21 +0200 Received: from metis.ext.pengutronix.de ([2001:67c:670:201:290:27ff:fe1d:cc33]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1o4gDf-00D6T0-Pc for lore@lore.pengutronix.de; Fri, 24 Jun 2022 12:07:21 +0200 Received: from localhost ([127.0.0.1] helo=metis.ext.pengutronix.de) by metis.ext.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1o4gDg-0000Oh-B2; Fri, 24 Jun 2022 12:07:20 +0200 Received: from dude04.red.stw.pengutronix.de ([2a0a:edc0:0:1101:1d::ac]) by metis.ext.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1o4gD2-0000OW-8Q; Fri, 24 Jun 2022 12:06:40 +0200 From: Bastian Krause To: ptxdist@pengutronix.de Date: Fri, 24 Jun 2022 12:06:33 +0200 Message-Id: <20220624100633.3198888-1-bst@pengutronix.de> X-Mailer: git-send-email 2.30.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [ptxdist] [PATCH] fuse3: fix copy/paste error selecting an option from fuse instead of fuse3 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: Bastian Krause 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.ext.pengutronix.de); SAEximRunCond expanded to false Separate packages for fuse and fuse3 exist. fuse3 was copied from fuse. A previous commit 91d340dec ("fuse3: fix copy/paste error") fixed copy/paste errors, but there is another one configuring the utils option: If FUSE and FUSE_UTIL are not selected, fuse3's utils are not built resulting in targetinstall errors for fusermount3, mount.fuse3 and 99-fuse3.rules. This again is only triggered since 91d340dec ("fuse3: fix copy/paste error"). Before that, no meson build options were provided, so the default utils=true was used. Since fuse3's tools and library were always installed unconditionally, just enable the utils option unconditionally. Signed-off-by: Bastian Krause --- rules/fuse3.make | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rules/fuse3.make b/rules/fuse3.make index 8af8f7282..d4925f2dd 100644 --- a/rules/fuse3.make +++ b/rules/fuse3.make @@ -36,7 +36,7 @@ FUSE3_CONF_OPT := \ -Ddisable-mtab=true \ -Dexamples=false \ -Dudevrulesdir=/usr/lib/udev/rules.d \ - -Dutils=$(call ptx/truefalse,PTXCONF_FUSE_UTIL) + -Dutils=true # ---------------------------------------------------------------------------- # Target-Install -- 2.30.2