diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-02-09 11:33:00 -0500 |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-02-09 11:33:00 -0500 |
commit | 10611017456eece7786873899b6c36e44c3139ad (patch) | |
tree | 6dfe6a619627e6525bb2c61b330924617c88f115 /Tests/SimpleInstallS2/inst.cxx | |
parent | 4dd97ff97f69b65d3eb59665ad37659268f6f1f7 (diff) | |
download | cmake-10611017456eece7786873899b6c36e44c3139ad.tar.gz |
ENH: Some systems do not handle spaces in the path
Diffstat (limited to 'Tests/SimpleInstallS2/inst.cxx')
-rw-r--r-- | Tests/SimpleInstallS2/inst.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/SimpleInstallS2/inst.cxx b/Tests/SimpleInstallS2/inst.cxx index 84f2adbe72..a933e2bfd5 100644 --- a/Tests/SimpleInstallS2/inst.cxx +++ b/Tests/SimpleInstallS2/inst.cxx @@ -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; } |