|
|
@@ -367,7 +367,6 @@ int cmCPackGenerator::InstallProjectViaInstalledDirectories(
|
|
|
cmCPackLogger(cmCPackLog::LOG_OUTPUT,
|
|
|
"- Install directory: " << top << std::endl);
|
|
|
gl.RecurseOn();
|
|
|
- gl.SetRecurseListDirs(true);
|
|
|
if ( !gl.FindFiles(findExpr) )
|
|
|
{
|
|
|
cmCPackLogger(cmCPackLog::LOG_ERROR,
|
|
|
@@ -870,7 +869,6 @@ int cmCPackGenerator::InstallProjectViaInstallCMakeProjects(
|
|
|
cmsys::Glob glB;
|
|
|
findExpr += "/*";
|
|
|
glB.RecurseOn();
|
|
|
- glB.SetRecurseListDirs(true);
|
|
|
glB.FindFiles(findExpr);
|
|
|
filesBefore = glB.GetFiles();
|
|
|
std::sort(filesBefore.begin(),filesBefore.end());
|
|
|
@@ -910,7 +908,6 @@ int cmCPackGenerator::InstallProjectViaInstallCMakeProjects(
|
|
|
{
|
|
|
cmsys::Glob glA;
|
|
|
glA.RecurseOn();
|
|
|
- glA.SetRecurseListDirs(true);
|
|
|
glA.FindFiles(findExpr);
|
|
|
std::vector<std::string> filesAfter = glA.GetFiles();
|
|
|
std::sort(filesAfter.begin(),filesAfter.end());
|
|
|
@@ -1077,7 +1074,6 @@ int cmCPackGenerator::DoPackage()
|
|
|
std::string findExpr = tempDirectory;
|
|
|
findExpr += "/*";
|
|
|
gl.RecurseOn();
|
|
|
- gl.SetRecurseListDirs(true);
|
|
|
gl.SetRecurseThroughSymlinks(false);
|
|
|
if ( !gl.FindFiles(findExpr) )
|
|
|
{
|