Skip to content

Commit

Permalink
Merge pull request #100 from robotology/fix-cmake-prefix-path-as-list…
Browse files Browse the repository at this point in the history
…-in-windows

YCMBootstrap: Avoid truncating env variables list to first element in Windows
  • Loading branch information
drdanz authored Nov 14, 2016
2 parents 619abba + 50ce605 commit 19fd293
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/YCMEPHelper.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ set(_ycm_ExternalProject_sha1sum 54a1031a8f1e6a7462072ea5c3d24f68567ab4ad)

# Files in all projects that need to bootstrap YCM
set(_ycm_IncludeUrl_sha1sum 20835806b1ccb6950c8d235f86c16c938064a4d4)
set(_ycm_YCMBootstrap_sha1sum c696c89613248c243076b4d8a3dcc3bdd3e2e590)
set(_ycm_YCMBootstrap_sha1sum 8cad902fcd79fb2dc70d14af73d74fdd8c73df94)


########################################################################
Expand Down
2 changes: 1 addition & 1 deletion tools/YCMBootstrap.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ function(_YCM_CLEAN_PATH _path _envvar)
if(NOT WIN32)
string(REPLACE ";" ":" _var_new "${_var_new}")
endif()
set(ENV{${_envvar}} ${_var_new})
set(ENV{${_envvar}} "${_var_new}")
endfunction()


Expand Down

0 comments on commit 19fd293

Please sign in to comment.