Skip to content

Commit

Permalink
cmake : fix joining of REAL_GIT_DIR
Browse files Browse the repository at this point in the history
  • Loading branch information
cebtenzzre committed Nov 2, 2023
1 parent 629f917 commit 2b5136e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion common/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,12 @@ if(EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/../.git")
if(NOT IS_DIRECTORY "${GIT_DIR}")
file(READ ${GIT_DIR} REAL_GIT_DIR_LINK)
string(REGEX REPLACE "gitdir: (.*)\n$" "\\1" REAL_GIT_DIR ${REAL_GIT_DIR_LINK})
set(GIT_DIR "${CMAKE_CURRENT_SOURCE_DIR}/../${REAL_GIT_DIR}")
string(FIND "${REAL_GIT_DIR}" "/" SLASH_POS)
if (SLASH_POS EQUAL 0)
set(GIT_DIR "${REAL_GIT_DIR}")
else()
set(GIT_DIR "${CMAKE_CURRENT_SOURCE_DIR}/../${REAL_GIT_DIR}")
endif()
endif()

set(GIT_INDEX "${GIT_DIR}/index")
Expand Down

0 comments on commit 2b5136e

Please sign in to comment.