Merge topic 'CPackDeb-fixFakerootOnControl'

abc9b32 Use fakeroot for control.tar.gz as well
This commit is contained in:
David Cole 2012-04-25 14:02:46 -04:00 committed by CMake Topic Stage
commit 21be162f9b
1 changed files with 10 additions and 5 deletions

View File

@ -480,7 +480,12 @@ int cmCPackDebGenerator::createDeb()
// Do not end the md5sum file with yet another (invalid)
}
cmd = "\"";
cmd = "";
if (NULL != this->GetOption("CPACK_DEBIAN_FAKEROOT_EXECUTABLE"))
{
cmd = this->GetOption("CPACK_DEBIAN_FAKEROOT_EXECUTABLE");
}
cmd += " \"";
cmd += cmakeExecutable;
cmd += "\" -E tar cfz control.tar.gz ./control ./md5sums";
const char* controlExtra =