From 8806f0b62f983a9d76b8d108e7d480e93ae4afb5 Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Fri, 18 Mar 2022 17:39:28 -0700 Subject: configure: missing tab in shell escaping code. * configure: a certain ' ' (four spaces between single quotes is actually supposed to be a tab; it must have been expanded by the editor. --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure') diff --git a/configure b/configure index 4846072e..f001ba97 100755 --- a/configure +++ b/configure @@ -103,7 +103,7 @@ for arg in "$0" ${@+"$@"} ; do *'"'* | *['$*?[(){};&|<>#']* | '~'* ) cmdline="$cmdline'$arg'" ;; - *' '* | *' '* ) + *' '* | *' '* ) cmdline="$cmdline\"$arg\"" ;; * ) -- cgit v1.2.3