diff options
author | Brad King <brad.king@kitware.com> | 2017-09-15 11:53:50 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2017-09-15 14:49:42 (GMT) |
commit | 7200ab491bf9ed0a83bc5e872a25a03c97fe8aea (patch) | |
tree | cbf3abe83c72612e48427af3e2e2230ea1580868 /Tests/VSGNUFortran | |
parent | 9da13bc3f740f2cc28d3fcddab83d01d6fc10517 (diff) | |
download | CMake-7200ab491bf9ed0a83bc5e872a25a03c97fe8aea.zip CMake-7200ab491bf9ed0a83bc5e872a25a03c97fe8aea.tar.gz CMake-7200ab491bf9ed0a83bc5e872a25a03c97fe8aea.tar.bz2 |
Tests: Fix CMake syntax warning in VSGNUFortran test
Diffstat (limited to 'Tests/VSGNUFortran')
-rw-r--r-- | Tests/VSGNUFortran/runtest.cmake.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/VSGNUFortran/runtest.cmake.in b/Tests/VSGNUFortran/runtest.cmake.in index 987207b..fc05715 100644 --- a/Tests/VSGNUFortran/runtest.cmake.in +++ b/Tests/VSGNUFortran/runtest.cmake.in @@ -14,7 +14,7 @@ file(TO_NATIVE_PATH "${MINGW_PATH}" MINGW_PATH) string(REPLACE "\\" "\\\\" MINGW_PATH "${MINGW_PATH}") message("${MINGW_PATH}") set(test_exe "@VSGNUFortran_BINARY_DIR@/bin/c_using_fortran.exe") -set(ENV{PATH} "${MINGW_PATH}";$ENV{PATH}) +set(ENV{PATH} "${MINGW_PATH};$ENV{PATH}") message("run ${test_exe}") execute_process(COMMAND "${test_exe}" RESULT_VARIABLE res) |