diff options
-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 ) { |