From: <ai...@us...> - 2013-10-11 04:47:27
|
Revision: 12585 http://sourceforge.net/p/plplot/code/12585 Author: airwin Date: 2013-10-11 04:47:25 +0000 (Fri, 11 Oct 2013) Log Message: ----------- Fix a typo in the argument of an else command that was discovered by CMake-2.8.12. I am pretty sure the arguments of else commands are generally ignored so this typo did not cause any misbehaviour in the past, but nevertheless it is good to fix this issue. Modified Paths: -------------- trunk/cmake/modules/pkg-config.cmake Modified: trunk/cmake/modules/pkg-config.cmake =================================================================== --- trunk/cmake/modules/pkg-config.cmake 2013-10-06 18:58:29 UTC (rev 12584) +++ trunk/cmake/modules/pkg-config.cmake 2013-10-11 04:47:25 UTC (rev 12585) @@ -175,7 +175,7 @@ if("${_link_flags_in}" STREQUAL "") set(${_link_flags_out}) - else("${_link_flags_in}" STREQUAL ""}) + else("${_link_flags_in}" STREQUAL "") #message("(original link flags) = ${_link_flags_in}") # Convert link flags to a list. Note some link flags are blank-delimited # (such as "-framework whatever") so preserve those by splitting into This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |