Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/genkernel:master commit in: /
Date: Mon, 25 Mar 2019 21:29:58
Message-Id: 1553549355.90144963e0f58b4f507ee023809fb7197a047fcd.whissi@gentoo
1 commit: 90144963e0f58b4f507ee023809fb7197a047fcd
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Mon Mar 25 21:29:15 2019 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Mon Mar 25 21:29:15 2019 +0000
6 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=90144963
7
8 determine_config_file(): reformat code
9
10 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
11
12 gen_configkernel.sh | 4 +++-
13 1 file changed, 3 insertions(+), 1 deletion(-)
14
15 diff --git a/gen_configkernel.sh b/gen_configkernel.sh
16 index 5d4bf23..3b27f6c 100755
17 --- a/gen_configkernel.sh
18 +++ b/gen_configkernel.sh
19 @@ -24,7 +24,9 @@ determine_config_file() {
20 then
21 gen_die 'Error: No kernel .config specified, or file not found!'
22 fi
23 - KERNEL_CONFIG="$(readlink -f "${KERNEL_CONFIG}")"
24 +
25 + KERNEL_CONFIG="$(readlink -f "${KERNEL_CONFIG}")"
26 +
27 # Validate the symlink result if any
28 if [ ! -f "${KERNEL_CONFIG}" ]
29 then