summaryrefslogtreecommitdiff
path: root/configure.ac.in
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2020-07-17 15:56:20 +0200
committerMichał Górny <mgorny@gentoo.org>2020-07-17 15:56:20 +0200
commita117d09997cfcb94e89756749ff1be4c8dfa8805 (patch)
treeea742531facc05eeabadfe052ee3c93678cec09d /configure.ac.in
parent88365b8f809dfe8256ffbfef4f4e7e937f2dbd75 (diff)
downloadxfconf-a117d09997cfcb94e89756749ff1be4c8dfa8805.tar.gz
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.
Diffstat (limited to 'configure.ac.in')
-rw-r--r--configure.ac.in2
1 files changed, 1 insertions, 1 deletions
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"],