configure: Silence warning about echo -n [shellcheck]

Seems SC2039 has been replaced, so should be phased out.
This commit is contained in:
Kim Alvefur 2021-11-29 17:40:40 +01:00
parent 5a3d8dcb87
commit 0edc44c2cc

3
configure vendored
View file

@ -108,7 +108,8 @@ die() {
exit 1
}
# shellcheck disable=SC2039
# COMPAT SC2039 has been phased out, remove in the future
# shellcheck disable=SC2039,SC3037
case $(echo -n x) in
-n*) echo_n_flag='';;
*) echo_n_flag='-n';;