2015-08-26 00:25:24 +02:00
|
|
|
diff -u -r ../dpkg-1.18.2/src/archives.c ./src/archives.c
|
|
|
|
--- ../dpkg-1.18.2/src/archives.c 2015-07-13 09:53:37.000000000 -0400
|
|
|
|
+++ ./src/archives.c 2015-08-25 17:59:35.594992908 -0400
|
|
|
|
@@ -352,8 +352,10 @@
|
2015-06-13 01:03:31 +02:00
|
|
|
namenode->statoverride->uid,
|
|
|
|
namenode->statoverride->gid,
|
|
|
|
namenode->statoverride->mode);
|
|
|
|
+#ifndef __ANDROID__
|
|
|
|
if (fchown(fd, st->uid, st->gid))
|
2015-08-26 00:25:24 +02:00
|
|
|
ohshite(_("error setting ownership of '%.255s'"), te->name);
|
2015-06-13 01:03:31 +02:00
|
|
|
+#endif
|
|
|
|
if (fchmod(fd, st->mode & ~S_IFMT))
|
2015-08-26 00:25:24 +02:00
|
|
|
ohshite(_("error setting permissions of '%.255s'"), te->name);
|
2015-06-13 01:03:31 +02:00
|
|
|
|
2015-08-26 00:25:24 +02:00
|
|
|
@@ -465,11 +467,15 @@
|
2015-06-13 01:03:31 +02:00
|
|
|
return; /* Already handled using the file descriptor. */
|
|
|
|
|
|
|
|
if (te->type == TAR_FILETYPE_SYMLINK) {
|
|
|
|
+#ifndef __ANDROID__
|
|
|
|
if (lchown(path, st->uid, st->gid))
|
2015-08-26 00:25:24 +02:00
|
|
|
ohshite(_("error setting ownership of symlink '%.255s'"), path);
|
2015-06-13 01:03:31 +02:00
|
|
|
+#endif
|
|
|
|
} else {
|
|
|
|
+#ifndef __ANDROID__
|
|
|
|
if (chown(path, st->uid, st->gid))
|
2015-08-26 00:25:24 +02:00
|
|
|
ohshite(_("error setting ownership of '%.255s'"), path);
|
2015-06-13 01:03:31 +02:00
|
|
|
+#endif
|
|
|
|
if (chmod(path, st->mode & ~S_IFMT))
|
2015-08-26 00:25:24 +02:00
|
|
|
ohshite(_("error setting permissions of '%.255s'"), path);
|
2015-06-13 01:03:31 +02:00
|
|
|
}
|
2015-08-26 00:25:24 +02:00
|
|
|
@@ -1022,14 +1028,19 @@
|
2015-06-13 01:03:31 +02:00
|
|
|
varbuf_end_str(&symlinkfn);
|
|
|
|
if (symlink(symlinkfn.buf,fnametmpvb.buf))
|
2015-08-26 00:25:24 +02:00
|
|
|
ohshite(_("unable to make backup symlink for '%.255s'"), ti->name);
|
2015-06-13 01:03:31 +02:00
|
|
|
+#ifndef __ANDROID__
|
|
|
|
if (lchown(fnametmpvb.buf,stab.st_uid,stab.st_gid))
|
2015-08-26 00:25:24 +02:00
|
|
|
ohshite(_("unable to chown backup symlink for '%.255s'"), ti->name);
|
2015-06-13 01:03:31 +02:00
|
|
|
+#endif
|
|
|
|
tarobject_set_se_context(fnamevb.buf, fnametmpvb.buf, stab.st_mode);
|
|
|
|
} else {
|
|
|
|
debug(dbg_eachfiledetail, "tarobject nondirectory, 'link' backup");
|
2015-08-26 00:25:24 +02:00
|
|
|
+ /* Termux modification: Try with rename(2) for systems not supporting hardlinks. */
|
2015-07-10 03:04:45 +02:00
|
|
|
if (link(fnamevb.buf,fnametmpvb.buf))
|
2015-08-26 00:25:24 +02:00
|
|
|
- ohshite(_("unable to make backup link of '%.255s' before installing new version"),
|
2015-07-10 03:04:45 +02:00
|
|
|
- ti->name);
|
2015-08-26 00:25:24 +02:00
|
|
|
+ if (rename(fnamevb.buf,fnametmpvb.buf)) {
|
|
|
|
+ ohshite(_("unable to make backup link of '%.255s' before installing new version"),
|
|
|
|
+ ti->name);
|
|
|
|
+ }
|
2015-07-10 03:04:45 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|