mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-11 16:32:14 -06:00
CPack/Deb: Restore setting of root as the owner of files
Refactoring in commit v3.10.0-rc1~220^2 (cmCPackDebGenerator: Use libarchive to create .deb file) accidentally broke this for the top-level archive.
This commit is contained in:
@@ -664,6 +664,12 @@ int cmCPackDebGenerator::createDeb()
|
||||
cmGeneratedFileStream debStream;
|
||||
debStream.Open(outputPath.c_str(), false, true);
|
||||
cmArchiveWrite deb(debStream, cmArchiveWrite::CompressNone, "arbsd");
|
||||
|
||||
// uid/gid should be the one of the root user, and this root user has
|
||||
// always uid/gid equal to 0.
|
||||
deb.SetUIDAndGID(0u, 0u);
|
||||
deb.SetUNAMEAndGNAME("root", "root");
|
||||
|
||||
if (!deb.Add(tlDir + "debian-binary", tlDir.length()) ||
|
||||
!deb.Add(tlDir + "control.tar.gz", tlDir.length()) ||
|
||||
!deb.Add(tlDir + "data.tar" + compression_suffix, tlDir.length())) {
|
||||
|
||||
Reference in New Issue
Block a user