From c3b586e5282462ea43824841357781edcf8bdc91 Mon Sep 17 00:00:00 2001 From: Kevin Rocard Date: Sun, 12 Apr 2015 01:01:02 +0200 Subject: Install bash completions in /usr/share With a classic cmake install prefix '/usr', bash completions were installed in /usr/etc/bash_completion.d/ which even before bash-completion 1.9 was incorrect. Since v1.9 all completions are to be installed in /usr/share/bash-completion/completions See: http://anonscm.debian.org/cgit/bash-completion/bash-completion.git/tree/CHANGES#n324 Change the completions install path accordingly --- tools/bash_completion/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/bash_completion/CMakeLists.txt b/tools/bash_completion/CMakeLists.txt index 9e66d57..17ea55e 100644 --- a/tools/bash_completion/CMakeLists.txt +++ b/tools/bash_completion/CMakeLists.txt @@ -27,4 +27,4 @@ # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. INSTALL(FILES remote-process - DESTINATION etc/bash_completion.d/) + DESTINATION share/bash-completion/completions/) -- cgit v1.1