From a117d09997cfcb94e89756749ff1be4c8dfa8805 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Fri, 17 Jul 2020 15:56:20 +0200 Subject: Fix stray double-quote in bash-completion PKG_CONFIG invocation Fix a stray double-quote that causes unterminated quoted string error in dash: ./configure: 1: Syntax error: Unterminated quoted string PKG_CONFIG should remain unquoted since it may contain command options in addition to the path. --- configure.ac.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure.ac.in') diff --git a/configure.ac.in b/configure.ac.in index ff3ad14..1255d24 100644 --- a/configure.ac.in +++ b/configure.ac.in @@ -204,7 +204,7 @@ AS_IF([test "x$with_bash_completion_dir" = xyes], [AC_MSG_CHECKING([for bash-completion directory]) AS_IF([test "x$PKG_CONFIG" != x \ && bash_completion_prefix=`$PKG_CONFIG --print-errors --variable=prefix bash-completion 2>&AS_MESSAGE_LOG_FD` \ - && bash_completion_dir=`"$PKG_CONFIG --print-errors --variable=completionsdir bash-completion 2>&AS_MESSAGE_LOG_FD`], + && bash_completion_dir=`$PKG_CONFIG --print-errors --variable=completionsdir bash-completion 2>&AS_MESSAGE_LOG_FD`], [bash_completion_dir="${bash_completion_dir#"$bash_completion_prefix"}" bash_completion_dir="${bash_completion_dir#/}" BASH_COMPLETION_DIR='${prefix}'/"$bash_completion_dir"], -- cgit v1.2.1