mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
cmake: Touch $GIT_DIR/logs/HEAD if it does not already exist.
Apparently some git tools (such as "repo") may not create this file. Patch by Quentin Neill. llvm-svn: 301565
This commit is contained in:
parent
0cccf42c4a
commit
d964add08d
@ -18,6 +18,10 @@ macro(find_first_existing_vc_file out_var path)
|
|||||||
if(git_result EQUAL 0)
|
if(git_result EQUAL 0)
|
||||||
string(STRIP "${git_dir}" git_dir)
|
string(STRIP "${git_dir}" git_dir)
|
||||||
set(${out_var} "${git_dir}/logs/HEAD")
|
set(${out_var} "${git_dir}/logs/HEAD")
|
||||||
|
# some branchless cases (e.g. 'repo') may not yet have .git/logs/HEAD
|
||||||
|
if (NOT EXISTS "${git_dir}/logs/HEAD")
|
||||||
|
file(WRITE "${git_dir}/logs/HEAD" "")
|
||||||
|
endif()
|
||||||
else()
|
else()
|
||||||
find_first_existing_file(${out_var}
|
find_first_existing_file(${out_var}
|
||||||
"${path}/.svn/wc.db" # SVN 1.7
|
"${path}/.svn/wc.db" # SVN 1.7
|
||||||
|
Loading…
Reference in New Issue
Block a user