Gentoo Archives: gentoo-commits

From: Mike Frysinger <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/autotools-wrappers:main commit in: /
Date: Sun, 30 Jan 2022 09:24:27
Message-Id: 1643531524.b053e6168eb5eb344472ce4e3d1dad994693c992.vapier@gentoo
1 commit: b053e6168eb5eb344472ce4e3d1dad994693c992
2 Author: Mike Frysinger <vapier <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 30 08:32:04 2022 +0000
4 Commit: Mike Frysinger <vapier <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 30 08:32:04 2022 +0000
6 URL: https://gitweb.gentoo.org/proj/autotools-wrappers.git/commit/?id=b053e616
7
8 autoconf-wrapper: fix minor variable styling
9
10 We don't use braces on single-character shell builtins.
11
12 Signed-off-by: Mike Frysinger <vapier <AT> gentoo.org>
13
14 ac-wrapper.sh | 2 +-
15 1 file changed, 1 insertion(+), 1 deletion(-)
16
17 diff --git a/ac-wrapper.sh b/ac-wrapper.sh
18 index a16c86a..d522576 100755
19 --- a/ac-wrapper.sh
20 +++ b/ac-wrapper.sh
21 @@ -33,7 +33,7 @@ which() {
22 # Sanitize argv[0] since it isn't always a full path #385201
23 #
24 argv0=${0##*/}
25 -case ${0} in
26 +case $0 in
27 ${argv0})
28 # find it in PATH
29 if ! full_argv0=$(which "${argv0}") ; then