Gentoo Archives: gentoo-dev

From: David Seifert <soap@g.o>
To: gentoo-dev@l.g.o
Cc: David Seifert <soap@g.o>
Subject: [gentoo-dev] [PATCH 2/2] kernel-2.eclass: fix spelling
Date: Fri, 15 Apr 2022 14:07:00
Message-Id: 20220415140616.891845-2-soap@gentoo.org
In Reply to: [gentoo-dev] [PATCH 1/2] kernel-2.eclass: remove EAPI 6 by David Seifert
1 Signed-off-by: David Seifert <soap@g.o>
2 ---
3 eclass/kernel-2.eclass | 4 ++--
4 1 file changed, 2 insertions(+), 2 deletions(-)
5
6 diff --git a/eclass/kernel-2.eclass b/eclass/kernel-2.eclass
7 index 51dabc4562d..02c70422ee0 100644
8 --- a/eclass/kernel-2.eclass
9 +++ b/eclass/kernel-2.eclass
10 @@ -670,7 +670,7 @@ if [[ ${ETYPE} == sources ]]; then
11 )"
12
13 SLOT="${PVR}"
14 - DESCRIPTION="Sources based on the Linux Kernel."
15 + DESCRIPTION="Sources based on the Linux Kernel"
16 IUSE="symlink build"
17
18 # Bug #266157, deblob for libre support
19 @@ -932,7 +932,7 @@ postinst_sources() {
20 # if we are to forcably symlink, delete it if it already exists first.
21 if [[ ${K_SYMLINK} -gt 0 ]]; then
22 if [[ -e ${EROOT}/usr/src/linux && ! -L ${EROOT}/usr/src/linux ]] ; then
23 - die "${EROOT}/usr/src/linux exist and is not a symlink"
24 + die "${EROOT}/usr/src/linux exists and is not a symlink"
25 fi
26
27 ln -snf linux-${KV_FULL} "${EROOT}"/usr/src/linux || die
28 --
29 2.35.1

Replies

Subject Author
Re: [gentoo-dev] [PATCH 2/2] kernel-2.eclass: fix spelling Mike Pagano <mpagano@g.o>