Skip to content
Snippets Groups Projects
Commit b49589e2 authored by Natanael Copa's avatar Natanael Copa
Browse files

abuild: show all detected dependencies

This will hopefully help detect depends problems early
parent df83f78d
No related branches found
No related tags found
No related merge requests found
...@@ -915,6 +915,8 @@ trace_apk_deps() { ...@@ -915,6 +915,8 @@ trace_apk_deps() {
for i in $autodeps; do for i in $autodeps; do
echo "depend = $i" echo "depend = $i"
done | sort -u >> "$dir"/.PKGINFO done | sort -u >> "$dir"/.PKGINFO
# display all depends
sed -n '/^depend =/s/depend = /\t/p' "$dir"/.PKGINFO >&2
} }
find_scanelf_paths() { find_scanelf_paths() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment