0
0
mirror of https://github.com/termux/termux-packages.git synced 2025-09-25 12:22:31 +00:00
Files
termux-packages/packages/keychain/keychain.patch
Fredrik Fornwall 343de5ebc7 fix(main/keychain): Avoid trying to use hard links
Hard links do not work on Android since 6.0.

So modify the file locking mechanism from:
   if ln "$tmpfile" "$lockf"; then rm -f "$tmpfile"; ..
to
   if mv --update=none-fail "$tmpfile" "$lockf"; then ..

Fixes #21736
2024-10-09 14:28:47 +02:00

903 B