From cbe441106233512960e952ab443826f11ff3ff46 Mon Sep 17 00:00:00 2001 From: Jordan Justen Date: Fri, 21 Feb 2020 15:54:15 -0800 Subject: bash-completion: Fix install directory The bash completions were being installed to /usr/usr/share/bash-completion/completions/piglit. Signed-off-by: Jordan Justen --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- cgit v1.2.3