diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-06-30 12:59:52 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-06-30 12:59:52 (GMT) |
commit | 35033f248d58e27ff453d6729187f51ba4a36ab0 (patch) | |
tree | b1ce350efd260e193536b1105e8690d3a9cef133 /Source/cmFileCommand.cxx | |
parent | 0a208d5fb531f3543435eaeb5ebd72b10f0e116e (diff) | |
download | CMake-35033f248d58e27ff453d6729187f51ba4a36ab0.zip CMake-35033f248d58e27ff453d6729187f51ba4a36ab0.tar.gz CMake-35033f248d58e27ff453d6729187f51ba4a36ab0.tar.bz2 |
ERR: Fix typo
Diffstat (limited to 'Source/cmFileCommand.cxx')
-rw-r--r-- | Source/cmFileCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmFileCommand.cxx b/Source/cmFileCommand.cxx index 3a22e21..471b92a 100644 --- a/Source/cmFileCommand.cxx +++ b/Source/cmFileCommand.cxx @@ -461,7 +461,7 @@ bool cmFileCommand::HandleInstallCommand( std::string destfile = destfilewe; if ( ext.size() ) { - destfile + "." + ext; + destfile += ext; } switch( itype ) { |