diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-08-01 17:24:42 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-08-01 17:24:42 (GMT) |
commit | c198fa1af349ee8dc6e56e48f2bd15fd78b0f60d (patch) | |
tree | 2f0466e404b5019b6f99c0f707a004f1ed3d7eea /Source | |
parent | 63ca58ceafa459ec769d7c969852ab1f6fb30f7c (diff) | |
download | CMake-c198fa1af349ee8dc6e56e48f2bd15fd78b0f60d.zip CMake-c198fa1af349ee8dc6e56e48f2bd15fd78b0f60d.tar.gz CMake-c198fa1af349ee8dc6e56e48f2bd15fd78b0f60d.tar.bz2 |
ENH: Syntax cleanup
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator.cxx b/Source/cmLocalUnixMakefileGenerator.cxx index d7a8520..5c07e5d 100644 --- a/Source/cmLocalUnixMakefileGenerator.cxx +++ b/Source/cmLocalUnixMakefileGenerator.cxx @@ -2194,11 +2194,11 @@ void cmLocalUnixMakefileGenerator::OutputInstallRules(std::ostream& fout) // does not work on windows.... if(*i == "install-sh") { - fout << "\t @cp "; + fout << "\tcp "; } else { - fout << "\t @$(INSTALL_DATA) "; + fout << "\t$(INSTALL_DATA) "; } fout << cmSystemTools::ConvertToOutputPath(i->c_str()) |