diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-06-30 08:59:52 -0400 |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-06-30 08:59:52 -0400 |
commit | 35033f248d58e27ff453d6729187f51ba4a36ab0 (patch) | |
tree | b1ce350efd260e193536b1105e8690d3a9cef133 | |
parent | 0a208d5fb531f3543435eaeb5ebd72b10f0e116e (diff) | |
download | cmake-35033f248d58e27ff453d6729187f51ba4a36ab0.tar.gz |
ERR: Fix typo
-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 3a22e21f89..471b92ad3c 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 ) { |