index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Eli Schwartz <eschwartz@archlinux.org> | 2019-04-10 01:50:31 -0400 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2019-05-08 10:14:32 +1000 |
commit | 6911904a033c1494f32f438f2d5cac2dc5b1ee19 (patch) | |
tree | e4a5acdd763f70a0c0027439023812761c468cb8 | |
parent | f2a7fb2b96dd76f48b7750d1edeb6a85b7006856 (diff) |
-rw-r--r-- | scripts/makepkg.sh.in | 3 |
diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index 4f096a36..fd06ce02 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -666,7 +666,8 @@ list_package_files() { ( export LC_COLLATE=C shopt -s dotglob globstar - printf '%s\0' ** + # bash 5.0 only works with combo directory + file globs + printf '%s\0' **/* ) } |