Skip to content

Commit

Permalink
Merge pull request #439 from algo99/master
Browse files Browse the repository at this point in the history
* Fix local installation paths on Linux, see issue #393
  • Loading branch information
Murmele authored Feb 17, 2023
2 parents a4f4434 + 3dbaedd commit 359d28f
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion dep/git/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ if(NOT USE_SYSTEM_GIT)
if(NOT APPLE)
install(
TARGETS ${TARGET}
DESTINATION .
DESTINATION ${CMAKE_INSTALL_BINDIR}
COMPONENT ${GITTYUP_NAME})
endif()
endmacro()
Expand Down
6 changes: 3 additions & 3 deletions pack/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ elseif(NOT USE_SYSTEM_QT)

install(
FILES ${QT_LIBRARY}
DESTINATION .
DESTINATION ${CMAKE_INSTALL_LIBDIR}
PERMISSIONS
OWNER_READ
OWNER_WRITE
Expand Down Expand Up @@ -131,7 +131,7 @@ if(UNIX AND NOT APPLE)

install(
FILES "${LIB_PATH}/${LIB_NAME}${LIB_EXT}"
DESTINATION .
DESTINATION ${CMAKE_INSTALL_LIBDIR}
PERMISSIONS
OWNER_READ
OWNER_WRITE
Expand Down Expand Up @@ -166,7 +166,7 @@ if(NOT APPLE)

install(
FILES ${SSL_LIB}
DESTINATION .
DESTINATION ${CMAKE_INSTALL_LIBDIR}
PERMISSIONS
OWNER_READ
OWNER_WRITE
Expand Down
2 changes: 1 addition & 1 deletion src/app/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ else()
# Install application.
install(
TARGETS gittyup
DESTINATION .
DESTINATION ${CMAKE_INSTALL_BINDIR}
COMPONENT ${GITTYUP_NAME})
endif()

Expand Down
2 changes: 1 addition & 1 deletion src/index/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ else()
else()
install(
TARGETS indexer
DESTINATION .
DESTINATION ${CMAKE_INSTALL_BINDIR}
COMPONENT ${GITTYUP_NAME})
endif()
endif()
2 changes: 1 addition & 1 deletion src/update/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ elseif(UNIX)
else()
install(
TARGETS relauncher
DESTINATION .
DESTINATION ${CMAKE_INSTALL_BINDIR}
COMPONENT ${GITTYUP_NAME})
endif()
endif()

0 comments on commit 359d28f

Please sign in to comment.