index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Levente Polyak <anthraxx@archlinux.org> | 2020-05-11 00:45:49 +0200 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2020-05-11 12:19:40 +1000 |
commit | 8ce142a2552418f64a74e773f659d92b065d6209 (patch) | |
tree | 67c08c8e8207df79dc2a9ed1141421195f78e2b9 /scripts | |
parent | 8e769ddb8a59a9fbacf4614283d2fb519f022386 (diff) |
-rw-r--r-- | scripts/makepkg.sh.in | 2 |
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 |