You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Calling rez_install_files with the LOCAL_SYMLINK parameter fails when one of the input files has a symlink in the name. This can be fixed by adding quotes in the following line inside the 'install_files_' macro (rez/src/rezplugins/build_system/cmake_files/InstallFiles.cmake:140):
Hi,
Calling rez_install_files with the LOCAL_SYMLINK parameter fails when one of the input files has a symlink in the name. This can be fixed by adding quotes in the following line inside the 'install_files_' macro (rez/src/rezplugins/build_system/cmake_files/InstallFiles.cmake:140):
install( CODE "execute_process(COMMAND ${CMAKE_COMMAND} -E create_symlink ${f} ${CMAKE_INSTALL_PREFIX}/${target_fpath})" )
,which becomes:
install( CODE "execute_process(COMMAND ${CMAKE_COMMAND} -E create_symlink \"${f}\" \"${CMAKE_INSTALL_PREFIX}/${target_fpath}\")" )
The text was updated successfully, but these errors were encountered: