summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJordan Justen <jordan.l.justen@intel.com>2020-02-21 15:54:15 -0800
committerJordan Justen <jordan.l.justen@intel.com>2020-02-21 16:32:45 -0800
commitcbe441106233512960e952ab443826f11ff3ff46 (patch)
treefb29913d0ed845bd447d4f503b9a95d013906622
parentb85ddb8d7de79bb956ac7399a22767e19e866caf (diff)
bash-completion: Fix install directorybash-install-path
The bash completions were being installed to /usr/usr/share/bash-completion/completions/piglit. Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index d8e68fd1e..6ab7bc981 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -560,7 +560,7 @@ install (
if (BASH_COMPLETION_FOUND)
install(
FILES completions/bash/piglit
- DESTINATION ${CMAKE_INSTALL_PREFIX}/${BASH_COMPLETION_COMPLETIONSDIR}/
+ DESTINATION ${BASH_COMPLETION_COMPLETIONSDIR}
)
endif (BASH_COMPLETION_FOUND)