From: <ai...@us...> - 2013-12-14 21:23:35
|
Revision: 12865 http://sourceforge.net/p/plplot/code/12865 Author: airwin Date: 2013-12-14 21:23:33 +0000 (Sat, 14 Dec 2013) Log Message: ----------- FORTRAN ==> Fortran. This bug fix should make no difference on Linux where all three C, CXX, and Fortran variables are identical, but it will make a (slight) difference on platforms where Fortran has a different set of system locations than the C and C++ compilers. Modified Paths: -------------- trunk/cmake/modules/plplot_functions.cmake Modified: trunk/cmake/modules/plplot_functions.cmake =================================================================== --- trunk/cmake/modules/plplot_functions.cmake 2013-12-13 19:27:57 UTC (rev 12864) +++ trunk/cmake/modules/plplot_functions.cmake 2013-12-14 21:23:33 UTC (rev 12865) @@ -205,7 +205,7 @@ set(directories_to_be_removed ${CMAKE_C_IMPLICIT_LINK_DIRECTORIES} ${CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES} - ${CMAKE_FORTRAN_IMPLICIT_LINK_DIRECTORIES} + ${CMAKE_Fortran_IMPLICIT_LINK_DIRECTORIES} ) if(directories_to_be_removed) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |