summaryrefslogtreecommitdiff
path: root/libre/pacman/pacman-5.2.1-reproducible-libprovides.patch
diff options
context:
space:
mode:
authorOmar Vega Ramos <ovruni@gnu.org.pe>2020-06-11 15:40:57 -0500
committerOmar Vega Ramos <ovruni@gnu.org.pe>2020-06-11 15:40:57 -0500
commita2e98f3d99f498ec87508b1337c6b57aea407dce (patch)
treebd2b64c56a4a4fda0605d51577b2ad44533ec836 /libre/pacman/pacman-5.2.1-reproducible-libprovides.patch
parent5a35c563e0b9d2e2212edf1827bd28c9955d3123 (diff)
downloadabslibre-a2e98f3d99f498ec87508b1337c6b57aea407dce.tar.gz
abslibre-a2e98f3d99f498ec87508b1337c6b57aea407dce.tar.bz2
abslibre-a2e98f3d99f498ec87508b1337c6b57aea407dce.zip
pacman-5.2.1-6.parabola1: rebuild
Diffstat (limited to 'libre/pacman/pacman-5.2.1-reproducible-libprovides.patch')
-rw-r--r--libre/pacman/pacman-5.2.1-reproducible-libprovides.patch13
1 files changed, 13 insertions, 0 deletions
diff --git a/libre/pacman/pacman-5.2.1-reproducible-libprovides.patch b/libre/pacman/pacman-5.2.1-reproducible-libprovides.patch
new file mode 100644
index 000000000..fea695882
--- /dev/null
+++ b/libre/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