On 12/01/15 01:17, Dave Reisner wrote:
Unique the return lists of sources to prevent duplication which occurs because of merge_arch_attrs.
Lets fix the actual issue... diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index 1720e64..69e2df1 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -786,6 +786,8 @@ get_all_sources() { aggregate+=("${l[@]}") fi + unset l + for a in "${arch[@]}"; do if array_build l "source_$a"; then aggregate+=("${l[@]}") @@ -802,6 +804,8 @@ get_all_sources_for_arch() { aggregate+=("${l[@]}") fi + unset l + if array_build l "source_$CARCH"; then aggregate+=("${l[@]}") fi And even then this does not fix the real issue... array_build() should clear $1 as it appends onto it. I'm not sure how to do that. Allan