diff options
author | Mike Frysinger <vapier@gentoo.org> | 2022-01-30 03:32:04 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2022-01-30 03:32:04 -0500 |
commit | b053e6168eb5eb344472ce4e3d1dad994693c992 (patch) | |
tree | 792c2668db471bdccf67a3ec69921bc9092228f5 | |
parent | autoconf-wrapper: drop mention of emerge (diff) | |
download | autotools-wrappers-b053e6168eb5eb344472ce4e3d1dad994693c992.tar.gz autotools-wrappers-b053e6168eb5eb344472ce4e3d1dad994693c992.tar.bz2 autotools-wrappers-b053e6168eb5eb344472ce4e3d1dad994693c992.zip |
autoconf-wrapper: fix minor variable styling
We don't use braces on single-character shell builtins.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
-rwxr-xr-x | ac-wrapper.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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 |