Skip to content

Commit fcfdd73

Browse files
committed
relative path somehow got broken
full path seems to work and the patch anyway tries to convert relpath back to full path fix #981
1 parent 5f44500 commit fcfdd73

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

CMake/cdat_modules_extra/ESMP_install_step.cmake.in

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,8 @@
22
include(@cdat_CMAKE_BINARY_DIR@/cdat_common_environment.cmake)
33

44
file(GLOB_RECURSE ESMP_esmfmkfile "@cdat_EXTERNALS@/lib/libO/*.mk")
5-
file(RELATIVE_PATH _rel_path @PYTHON_SITE_PACKGES_PREFIX@/ESMP/src ${ESMP_esmfmkfile})
65

7-
set(ENV{ESMFMKFILE} ${_rel_path})
6+
set(ENV{ESMFMKFILE} ${ESMP_esmfmkfile})
87
foreach( item ${ESMP_esmfmkfile})
98
message("item " ${item})
109
endforeach( item ${ESMP_esmfmkfile})

0 commit comments

Comments
 (0)