From nobody Sat Oct 4 22:18:27 2025 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 681F82F8BEB; Tue, 12 Aug 2025 15:53:05 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1755013985; cv=none; b=F8+p79BTq6YWcc5nKogtE2p/wVnhH9SWtqR1uelABcDdkOfxtPoQ9hA1ITHWhyCFguKRfL8KFBU6C66JERVEKfulQ0T/h+rNNH9D9Z1ysK1eZXXNHxiCKlk8z4sfIE3cuZucFAsAi5xLRtxUAO+4uq6oD2gzUs6az56Pd6zUJJg= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1755013985; c=relaxed/simple; bh=KTpTCCjkRQ7n/04aWXym3yGT7vJ2QtIeN0GnK9dV3AI=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=pR6BbBD4aSTutM/Q7I8VYWw3v/vS9mSlVO4rbI88QopQjU+9lAHRrVpymOHDEGRgwpMpWDfdThQVc4Q4Z2BaQe/qdFLustDuh9veCamWvjgjSo10+7IEGXYo0MpV8koGYIjMqUGGnJBrxJAzmaPE/xVi+z5wA+s15jf+EmLM/Pg= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=gDvM2J8n; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="gDvM2J8n" Received: by smtp.kernel.org (Postfix) with ESMTPSA id B5CCBC4AF0C; Tue, 12 Aug 2025 15:53:04 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1755013984; bh=KTpTCCjkRQ7n/04aWXym3yGT7vJ2QtIeN0GnK9dV3AI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=gDvM2J8nBvJryctvpwI1NRYjLOYp37rknbpUpCz8vmOSmn2I8HrillVizXMZtXl8o XusQxEjYTomR668FXvlU/3B6IF8Y5xvJIBZf3wok2d9lQ4BpDPlYWwCYbXKeC+s8UI HGUZ9XfBfx6eFkAhIzRLtjMDM+sdF5nYBak8UEay/uOYbEISyU7kQ5dfzReFkyjgWf Wr1bsay1UlboivWvC+AMbixWowfM57DLPxVKoyuYyzQwuNKhpHnQViO1sfF3MXOCmu Rm0XCzc3182g7m+LxyB7oj6FGGCwvwHiKy2YsGIyvgLTw3tahptOCQQ95Ak8YPzq7C OJbFW61ppGxzQ== Received: from mchehab by mail.kernel.org with local (Exim 4.98.2) (envelope-from ) id 1ulrJ8-00000006kWI-2K8p; Tue, 12 Aug 2025 17:53:02 +0200 From: Mauro Carvalho Chehab To: Linux Doc Mailing List Cc: Mauro Carvalho Chehab , "Jonathan Corbet" , "Mauro Carvalho Chehab" , linux-kernel@vger.kernel.org Subject: [PATCH v2 17/39] scripts: sphinx-pre-install: fix rhel recomendations Date: Tue, 12 Aug 2025 17:52:34 +0200 Message-ID: <393a299a850ba9d94c6a8965e78db4da2dbf7e37.1754992972.git.mchehab+huawei@kernel.org> X-Mailer: git-send-email 2.50.1 In-Reply-To: References: Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Sender: Mauro Carvalho Chehab Content-Type: text/plain; charset="utf-8" Signed-off-by: Mauro Carvalho Chehab --- scripts/sphinx-pre-install.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/sphinx-pre-install.py b/scripts/sphinx-pre-install.py index 6b5f9eda91bb..1f64909953b9 100755 --- a/scripts/sphinx-pre-install.py +++ b/scripts/sphinx-pre-install.py @@ -519,9 +519,9 @@ class SphinxDependencyChecker: "For most, enabling epel and crb are enough:\n" \ "\tsudo dnf install -y epel-release", \ "\tsudo dnf config-manager --set-enabled crb\n" \ - "Yet, some may have other required repositories. Tho= se commands could be useful:" \ - "\tsudo dnf repolist all" \ - "\tsudo repoquery --available --info ", + "Yet, some may have other required repositories. Tho= se commands could be useful:\n" \ + "\tsudo dnf repolist all\n" \ + "\tsudo dnf repoquery --available --info \n", "\tsudo dnf config-manager --set-enabled '*' # enabl= e all - probably not what you want") =20 self.first_hint =3D False --=20 2.50.1