configure: Silence warning about echo -n [shellcheck]
authorKim Alvefur <zash@zash.se>
Mon, 29 Nov 2021 17:40:40 +0100
changeset 11970 4c5087ce3c2e
parent 11969 5e3aee9b6adc
child 11971 0f2b5182e80b
configure: Silence warning about echo -n [shellcheck] Seems SC2039 has been replaced, so should be phased out.
configure
--- a/configure	Mon Nov 29 17:40:02 2021 +0100
+++ b/configure	Mon Nov 29 17:40:40 2021 +0100
@@ -108,7 +108,8 @@
    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';;