CPack Fix KWStyle error

This commit is contained in:
Eric NOULARD 2010-12-01 21:00:38 +01:00
parent d0eb89c17b
commit 12a7125b32
1 changed files with 3 additions and 1 deletions

View File

@ -232,7 +232,9 @@ int cmCPackArchiveGenerator::PackageFiles()
// CASE 1 : COMPONENT ALL-IN-ONE package // CASE 1 : COMPONENT ALL-IN-ONE package
// If ALL GROUPS or ALL COMPONENTS in ONE package has been requested // If ALL GROUPS or ALL COMPONENTS in ONE package has been requested
// then the package file is unique and should be open here. // then the package file is unique and should be open here.
if (allComponentInOne || (allGroupInOne && (!this->ComponentGroups.empty()))) if (allComponentInOne ||
(allGroupInOne && (!this->ComponentGroups.empty()))
)
{ {
return PackageComponentsAllInOne(allComponentInOne); return PackageComponentsAllInOne(allComponentInOne);
} }