diff options
author | Alexey Neyman <stilor@att.net> | 2018-04-04 00:07:45 -0700 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2018-04-07 12:03:17 -0700 |
commit | 970811a1c58d22fad37d8cbe2233b8344f358e78 (patch) | |
tree | 414e1095de2ae795d543556e14e384f5567fce7e /configure.ac | |
parent | bb6c97551f7cfafea811367de0a6f382d9aec36b (diff) | |
download | crosstool-ng-970811a1c58d22fad37d8cbe2233b8344f358e78.tar.gz crosstool-ng-970811a1c58d22fad37d8cbe2233b8344f358e78.tar.bz2 crosstool-ng-970811a1c58d22fad37d8cbe2233b8344f358e78.zip |
Conditionally install bash completion
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index c7b6f5a0..920e42d7 100644 --- a/configure.ac +++ b/configure.ac @@ -33,6 +33,16 @@ AC_ARG_ENABLE( [run ct-ng from the current directory; 'make install' unsupported])]) AC_SUBST([enable_local], [${enable_local:-no}]) +AC_ARG_WITH([bash-completion-dir], + [AS_HELP_STRING( + [--with-bash-completion], + [install bash(1) command completion for ct-ng into specified directory, + relative to sysconfdir])], + [], + [with_bash_completion_dir=bash_completion.d]) +AM_CONDITIONAL([INSTALL_BASH_COMPLETION], [test "${with_bash_completion_dir}" != "no" ]) +AC_SUBST([BASH_COMPLETION_DIR], [${with_bash_completion_dir}]) + # FIXME: I don't know why we have this. Will remove after the 1.24 release. AC_ARG_ENABLE( [shared], |