commit: b053e6168eb5eb344472ce4e3d1dad994693c992
Author: Mike Frysinger <vapier <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 30 08:32:04 2022 +0000
Commit: Mike Frysinger <vapier <AT> gentoo <DOT> org>
CommitDate: Sun Jan 30 08:32:04 2022 +0000
URL:
https://gitweb.gentoo.org/proj/autotools-wrappers.git/commit/?id=b053e616
autoconf-wrapper: fix minor variable styling
We don't use braces on single-character shell builtins.
Signed-off-by: Mike Frysinger <vapier <AT> gentoo.org>
ac-wrapper.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ac-wrapper.sh b/ac-wrapper.sh
index a16c86a..d522576 100755
--- a/ac-wrapper.sh
+++ b/ac-wrapper.sh
@@ -33,7 +33,7 @@ which() {
# Sanitize argv[0] since it isn't always a full path #385201
#
argv0=${0##*/}
-case ${0} in
+case $0 in
${argv0})
# find it in PATH
if ! full_argv0=$(which "${argv0}") ; then