mirror of
https://github.com/reactos/CMake.git
synced 2024-11-24 12:09:48 +00:00
BUG: fix generated files with no extension bug
This commit is contained in:
parent
7bda70b836
commit
252f9fc1b1
@ -160,7 +160,12 @@ void cmSourceFile::SetName(const char* name, const char* dir, const char *ext,
|
||||
pathname += "/";
|
||||
}
|
||||
|
||||
pathname += m_SourceName + "." + ext;
|
||||
pathname += m_SourceName;
|
||||
if(ext && strlen(ext))
|
||||
{
|
||||
pathname += ".";
|
||||
pathname += ext;
|
||||
}
|
||||
m_FullPath = pathname;
|
||||
m_SourceExtension = ext;
|
||||
return;
|
||||
|
@ -76,7 +76,7 @@ bool cmSourceFilesCommand::InitialPass(std::vector<std::string> const& args)
|
||||
std::string ext = cmSystemTools::GetFilenameExtension(copy);
|
||||
std::string name_no_ext = cmSystemTools::GetFilenameName(copy.c_str());
|
||||
name_no_ext = name_no_ext.substr(0, name_no_ext.length()-ext.length());
|
||||
if ( ext[0] == '.' )
|
||||
if ( ext.length() && ext[0] == '.' )
|
||||
{
|
||||
ext = ext.substr(1);
|
||||
}
|
||||
|
@ -67,7 +67,7 @@ bool cmSourceFilesRemoveCommand::InitialPass(std::vector<std::string> const& arg
|
||||
std::string path = cmSystemTools::GetFilenamePath(copy);
|
||||
std::string name_no_ext = cmSystemTools::GetFilenameName(copy.c_str());
|
||||
name_no_ext = name_no_ext.substr(0, name_no_ext.length()-ext.length());
|
||||
if ( ext[0] == '.' )
|
||||
if ( ext.length() && ext[0] == '.' )
|
||||
{
|
||||
ext = ext.substr(1);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user