summaryrefslogtreecommitdiffstats
path: root/Source/CPack/cmCPackNSISGenerator.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2006-08-27 17:15:39 (GMT)
committerBrad King <brad.king@kitware.com>2006-08-27 17:15:39 (GMT)
commit2b602ea738f4ed99b67085f3f035f8eb2f43de88 (patch)
tree2c93b6d381a260f7bf51fe926f134abb6d703e4e /Source/CPack/cmCPackNSISGenerator.cxx
parent703c0e32c8bf9cc2de9a02c51d94e3c19fc6f91e (diff)
downloadCMake-2b602ea738f4ed99b67085f3f035f8eb2f43de88.zip
CMake-2b602ea738f4ed99b67085f3f035f8eb2f43de88.tar.gz
CMake-2b602ea738f4ed99b67085f3f035f8eb2f43de88.tar.bz2
COMP: Need to use cmsys_stl when in CMake code, not kwsys_stl.
Diffstat (limited to 'Source/CPack/cmCPackNSISGenerator.cxx')
-rw-r--r--Source/CPack/cmCPackNSISGenerator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/CPack/cmCPackNSISGenerator.cxx b/Source/CPack/cmCPackNSISGenerator.cxx
index bac5d74..8b1c879 100644
--- a/Source/CPack/cmCPackNSISGenerator.cxx
+++ b/Source/CPack/cmCPackNSISGenerator.cxx
@@ -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()) &&