diff options
author | Kevin Rocard <kevin.rocard@intel.com> | 2015-04-12 01:01:02 +0200 |
---|---|---|
committer | Eric Laurent <elaurent@google.com> | 2015-04-24 13:39:14 -0700 |
commit | c3b586e5282462ea43824841357781edcf8bdc91 (patch) | |
tree | f93afe6e833cf443e4984e48503cc8b92f899d40 /tools | |
parent | cd03f350b45ac747a1e36c59a40b341d1e288ddd (diff) | |
download | external_parameter-framework-c3b586e5282462ea43824841357781edcf8bdc91.zip external_parameter-framework-c3b586e5282462ea43824841357781edcf8bdc91.tar.gz external_parameter-framework-c3b586e5282462ea43824841357781edcf8bdc91.tar.bz2 |
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
Diffstat (limited to 'tools')
-rw-r--r-- | tools/bash_completion/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
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/) |