Use fakeroot for control.tar.gz as well

This commit is contained in:
Eric NOULARD 2012-04-17 09:22:07 +02:00
parent 233b5cbaf7
commit abc9b32375
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 =