borgbackup: update src-borg-xattr.py.patch

This commit is contained in:
Leonid Pliushch 2021-07-16 22:09:44 +03:00
parent 2cfa07a50d
commit 9452ed8d19
No known key found for this signature in database
GPG Key ID: 45F2964132545795
1 changed files with 6 additions and 6 deletions

View File

@ -1,12 +1,12 @@
diff -uNr borgbackup-1.1.10/src/borg/xattr.py borgbackup-1.1.10.mod/src/borg/xattr.py
--- borgbackup-1.1.10/src/borg/xattr.py 2019-05-16 05:58:15.000000000 +0300
+++ borgbackup-1.1.10.mod/src/borg/xattr.py 2019-12-12 00:27:59.831938631 +0200
@@ -68,7 +68,7 @@
diff -uNr borgbackup-1.1.17/src/borg/xattr.py borgbackup-1.1.17.mod/src/borg/xattr.py
--- borgbackup-1.1.17/src/borg/xattr.py 2021-07-12 22:44:34.000000000 +0300
+++ borgbackup-1.1.17.mod/src/borg/xattr.py 2021-07-16 22:08:43.614494338 +0300
@@ -72,7 +72,7 @@
# tools used by find_library, like ldconfig, gcc/cc, objdump.
# so we can only try some "usual" names for the C library:
if sys.platform.startswith('linux'):
- libc_name = 'libc.so.6'
+ libc_name = 'libc.so'
elif sys.platform.startswith(('freebsd', 'netbsd')):
libc_name = 'libc.so'
elif sys.platform == 'darwin':
libc_name = 'libc.dylib'
else: