chiark
/
gitweb
/
~mdw
/
termux-packages
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
dpkg: Do not even try hardlinking
[termux-packages]
/
packages
/
dpkg
/
src-archives.c.patch
diff --git
a/packages/dpkg/src-archives.c.patch
b/packages/dpkg/src-archives.c.patch
index 9ae0f41b25dcf3ea1217880b6753c7be4c525ff0..c4e206b132e8a089e35a34b8353248eee5bc911d 100644
(file)
--- a/
packages/dpkg/src-archives.c.patch
+++ b/
packages/dpkg/src-archives.c.patch
@@
-1,7
+1,7
@@
-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:3
7.000000000 -0400
-+++ ./src/archives.c 201
5-08-25 17:59:35.594992908 -04
00
-@@ -3
52,8 +352
,10 @@
+diff -u -r ../dpkg-1.18.
10
/src/archives.c ./src/archives.c
+--- ../dpkg-1.18.
10/src/archives.c 2016-07-07 19:36:4
7.000000000 -0400
++++ ./src/archives.c 201
6-11-25 18:32:58.505875297 -05
00
+@@ -3
93,8 +393
,10 @@
namenode->statoverride->uid,
namenode->statoverride->gid,
namenode->statoverride->mode);
namenode->statoverride->uid,
namenode->statoverride->gid,
namenode->statoverride->mode);
@@
-12,7
+12,7
@@
diff -u -r ../dpkg-1.18.2/src/archives.c ./src/archives.c
if (fchmod(fd, st->mode & ~S_IFMT))
ohshite(_("error setting permissions of '%.255s'"), te->name);
if (fchmod(fd, st->mode & ~S_IFMT))
ohshite(_("error setting permissions of '%.255s'"), te->name);
-@@ -
465,11 +467
,15 @@
+@@ -
506,11 +508
,15 @@
return; /* Already handled using the file descriptor. */
if (te->type == TAR_FILETYPE_SYMLINK) {
return; /* Already handled using the file descriptor. */
if (te->type == TAR_FILETYPE_SYMLINK) {
@@
-28,7
+28,7
@@
diff -u -r ../dpkg-1.18.2/src/archives.c ./src/archives.c
if (chmod(path, st->mode & ~S_IFMT))
ohshite(_("error setting permissions of '%.255s'"), path);
}
if (chmod(path, st->mode & ~S_IFMT))
ohshite(_("error setting permissions of '%.255s'"), path);
}
-@@ -10
22,14 +1028
,19 @@
+@@ -10
40,12 +1051
,19 @@
varbuf_end_str(&symlinkfn);
if (symlink(symlinkfn.buf,fnametmpvb.buf))
ohshite(_("unable to make backup symlink for '%.255s'"), ti->name);
varbuf_end_str(&symlinkfn);
if (symlink(symlinkfn.buf,fnametmpvb.buf))
ohshite(_("unable to make backup symlink for '%.255s'"), ti->name);
@@
-39,14
+39,12
@@
diff -u -r ../dpkg-1.18.2/src/archives.c ./src/archives.c
tarobject_set_se_context(fnamevb.buf, fnametmpvb.buf, stab.st_mode);
} else {
debug(dbg_eachfiledetail, "tarobject nondirectory, 'link' backup");
tarobject_set_se_context(fnamevb.buf, fnametmpvb.buf, stab.st_mode);
} else {
debug(dbg_eachfiledetail, "tarobject nondirectory, 'link' backup");
-+ /* Termux modification: Try with rename(2) for systems not supporting hardlinks. */
++#ifdef __ANDROID__
++ /* Android does not support hardlinks. */
++ if (rename(fnamevb.buf,fnametmpvb.buf))
++#else
if (link(fnamevb.buf,fnametmpvb.buf))
if (link(fnamevb.buf,fnametmpvb.buf))
-- ohshite(_("unable to make backup link of '%.255s' before installing new version"),
-- ti->name);
-+ if (rename(fnamevb.buf,fnametmpvb.buf)) {
-+ ohshite(_("unable to make backup link of '%.255s' before installing new version"),
-+ ti->name);
-+ }
++#endif
+ ohshite(_("unable to make backup link of '%.255s' before installing new version"),
+ ti->name);
}
}
- }
-