ENH: Some systems do not handle spaces in the path

This commit is contained in:
Andy Cedilnik 2004-02-09 11:33:00 -05:00
parent 4dd97ff97f
commit 1061101745
3 changed files with 3 additions and 3 deletions

View File

@ -239,7 +239,7 @@ IF(BUILD_TESTING)
--test-command conly)
SET(SimpleInstallInstallDir
"${CMake_BINARY_DIR}/Tests/SimpleInstall/Install Directory")
"${CMake_BINARY_DIR}/Tests/SimpleInstall/InstallDirectory")
ADD_TEST(SimpleInstall ${CMAKE_CTEST_COMMAND}
--build-and-test
"${CMake_SOURCE_DIR}/Tests/SimpleInstall"

View File

@ -17,6 +17,6 @@ int main ()
printf("Problem with lib2\n");
return 1;
}
printf("Foo: %s\n", foo);
printf("The value of Foo: %s\n", foo);
return SomeFunctionInFoo()-5;
}

View File

@ -17,6 +17,6 @@ int main ()
printf("Problem with lib2\n");
return 1;
}
printf("Foo: %s\n", foo);
printf("The value of Foo: %s\n", foo);
return SomeFunctionInFoo()-5;
}