summaryrefslogtreecommitdiffstats
path: root/abs/core/pacman/pacman-5.2.1-reproducible-libprovides.patch
diff options
context:
space:
mode:
authorBritney Fransen <brfransen@gmail.com>2020-05-24 05:47:20 (GMT)
committerBritney Fransen <brfransen@gmail.com>2020-05-24 05:47:20 (GMT)
commitdf75a2a3ca20d4c96f7a042fff9b7a4e80a80eec (patch)
tree5cfed26c4363f9d54ae9e700354f72a72b2a1082 /abs/core/pacman/pacman-5.2.1-reproducible-libprovides.patch
parent9d7e4a5dbcba225a08e908cbf2e1617ce63d0745 (diff)
downloadlinhes_pkgbuild-df75a2a3ca20d4c96f7a042fff9b7a4e80a80eec.zip
linhes_pkgbuild-df75a2a3ca20d4c96f7a042fff9b7a4e80a80eec.tar.gz
linhes_pkgbuild-df75a2a3ca20d4c96f7a042fff9b7a4e80a80eec.tar.bz2
pacman: update to 5.2.1
Diffstat (limited to 'abs/core/pacman/pacman-5.2.1-reproducible-libprovides.patch')
-rw-r--r--abs/core/pacman/pacman-5.2.1-reproducible-libprovides.patch13
1 files changed, 13 insertions, 0 deletions
diff --git a/abs/core/pacman/pacman-5.2.1-reproducible-libprovides.patch b/abs/core/pacman/pacman-5.2.1-reproducible-libprovides.patch
new file mode 100644
index 0000000..fea6958
--- /dev/null
+++ b/abs/core/pacman/pacman-5.2.1-reproducible-libprovides.patch
@@ -0,0 +1,13 @@
+diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in
+index d1416d15..b95a03af 100644
+--- a/scripts/makepkg.sh.in
++++ b/scripts/makepkg.sh.in
+@@ -521,7 +521,7 @@ find_libprovides() {
+ missing=0
+ case "$p" in
+ *.so)
+- mapfile -t filename < <(find "$pkgdir" -type f -name $p\*)
++ mapfile -t filename < <(find "$pkgdir" -type f -name $p\* | LC_ALL=C sort)
+ if [[ $filename ]]; then
+ # packages may provide multiple versions of the same library
+ for fn in "${filename[@]}"; do