From fd16da2ed68aa7f89ad37701bcf7674b7bb14b2d Mon Sep 17 00:00:00 2001 From: Eli Schwartz Date: Tue, 29 May 2018 00:08:38 -0400 Subject: scripts/completion: derive the bash completion directory from pkg-config Default to the standard completionsdir, which is lazy-loaded, rather than hardcoding the compatdir which is not. Signed-off-by: Eli Schwartz Signed-off-by: Allan McRae --- configure.ac | 3 +++ scripts/Makefile.am | 11 ++++++++--- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 0a48dbb2..07bdc105 100644 --- a/configure.ac +++ b/configure.ac @@ -215,6 +215,9 @@ AM_GNU_GETTEXT_VERSION(0.13.1) AC_CHECK_LIB([m], [fabs], , AC_MSG_ERROR([libm is needed to compile pacman!])) +PKG_CHECK_VAR(bashcompdir, [bash-completion], [completionsdir], , + bashcompdir="${prefix}/share/bash-completion/completions") + # Check for libarchive PKG_CHECK_MODULES(LIBARCHIVE, [libarchive >= 3.0.0], , AC_MSG_ERROR([*** libarchive >= 3.0.0 is needed to compile pacman!])) diff --git a/scripts/Makefile.am b/scripts/Makefile.am index f759e149..f83e16c0 100644 --- a/scripts/Makefile.am +++ b/scripts/Makefile.am @@ -246,13 +246,18 @@ $(WRAPPER): \ $(AM_V_at)$(LN_S) $@ $(subst -wrapper,,$@) install-data-local: - $(MKDIR_P) $(DESTDIR)$(sysconfdir)/bash_completion.d/ - $(INSTALL_DATA) completion/bash_completion $(DESTDIR)$(sysconfdir)/bash_completion.d/pacman + $(MKDIR_P) $(DESTDIR)$(bashcompdir) + $(INSTALL_DATA) completion/bash_completion $(DESTDIR)/$(bashcompdir)/pacman + for completion in makepkg pacman-key; do \ + $(LN_S) pacman $(DESTDIR)/$(bashcompdir)/$$completion; \ + done $(MKDIR_P) $(DESTDIR)$(datarootdir)/zsh/site-functions/ $(INSTALL_DATA) completion/zsh_completion $(DESTDIR)$(datarootdir)/zsh/site-functions/_pacman uninstall-local: - $(RM) $(DESTDIR)$(sysconfdir)/bash_completion.d/pacman + $(RM) $(DESTDIR)$(bashcompdir)/makepkg + $(RM) $(DESTDIR)$(bashcompdir)/pacman + $(RM) $(DESTDIR)$(bashcompdir)/pacman-key $(RM) $(DESTDIR)$(datarootdir)/zsh/site-functions/_pacman install-exec-hook: -- cgit v1.2.3-24-g4f1b