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

View File

@ -480,7 +480,12 @@ int cmCPackDebGenerator::createDeb()
// Do not end the md5sum file with yet another (invalid) // 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 += cmakeExecutable;
cmd += "\" -E tar cfz control.tar.gz ./control ./md5sums"; cmd += "\" -E tar cfz control.tar.gz ./control ./md5sums";
const char* controlExtra = const char* controlExtra =