summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2017-05-15 14:55:53 (GMT)
committerKitware Robot <kwrobot@kitware.com>2017-05-15 14:55:58 (GMT)
commitbedd098a65f30139eb2c1520d1d4b005e3b2c059 (patch)
tree64fb2164989eea87a184ceb00c1f823d468096b0 /Source
parentcda0baea495056c12c97262701c832e9b2a62bb4 (diff)
parent263840681331b0b75ee179b27ec33bb909f4c98c (diff)
downloadCMake-bedd098a65f30139eb2c1520d1d4b005e3b2c059.zip
CMake-bedd098a65f30139eb2c1520d1d4b005e3b2c059.tar.gz
CMake-bedd098a65f30139eb2c1520d1d4b005e3b2c059.tar.bz2
Merge topic 'cpack-components-handle-symlinks'
26384068 CPack test symlinks in package 6949b71f CPack unify component/monolithic package symlink handling 3eb0f080 Improved CPack tests error logging Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !841
Diffstat (limited to 'Source')
-rw-r--r--Source/CPack/cmCPackGenerator.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/CPack/cmCPackGenerator.cxx b/Source/CPack/cmCPackGenerator.cxx
index c873529..3e113d3 100644
--- a/Source/CPack/cmCPackGenerator.cxx
+++ b/Source/CPack/cmCPackGenerator.cxx
@@ -795,6 +795,7 @@ int cmCPackGenerator::InstallProjectViaInstallCMakeProjects(
cmsys::Glob glA;
glA.RecurseOn();
glA.SetRecurseListDirs(true);
+ glA.SetRecurseThroughSymlinks(false);
glA.FindFiles(findExpr);
std::vector<std::string> filesAfter = glA.GetFiles();
std::sort(filesAfter.begin(), filesAfter.end());