COMP: Need to use cmsys_stl when in CMake code, not kwsys_stl.

This commit is contained in:
Brad King
2006-08-27 13:15:39 -04:00
parent 703c0e32c8
commit 2b602ea738
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -248,7 +248,7 @@ bool cmCPackNSISGenerator::GetListOfSubdirectories(const char* topdir,
if (strcmp(dir.GetFile(static_cast<unsigned long>(fileNum)),".") &&
strcmp(dir.GetFile(static_cast<unsigned long>(fileNum)),".."))
{
kwsys_stl::string fullPath = topdir;
cmsys_stl::string fullPath = topdir;
fullPath += "/";
fullPath += dir.GetFile(static_cast<unsigned long>(fileNum));
if(cmsys::SystemTools::FileIsDirectory(fullPath.c_str()) &&