summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2004-06-30 08:59:52 -0400
committerAndy Cedilnik <andy.cedilnik@kitware.com>2004-06-30 08:59:52 -0400
commit35033f248d58e27ff453d6729187f51ba4a36ab0 (patch)
treeb1ce350efd260e193536b1105e8690d3a9cef133
parent0a208d5fb531f3543435eaeb5ebd72b10f0e116e (diff)
downloadcmake-35033f248d58e27ff453d6729187f51ba4a36ab0.tar.gz
ERR: Fix typo
-rw-r--r--Source/cmFileCommand.cxx2
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 )
{