diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2012-10-02 18:37:37 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2012-10-02 18:38:12 +0000 |
commit | b49589e2915bf6d7ed610db5705a06b1c9972040 (patch) | |
tree | 55db25fb69475fe65747e9bd970eb3545f9c4bc9 /abuild.in | |
parent | df83f78d7148fbde6c27f698f15848263ede0939 (diff) | |
download | abuild-b49589e2915bf6d7ed610db5705a06b1c9972040.tar.gz abuild-b49589e2915bf6d7ed610db5705a06b1c9972040.tar.bz2 abuild-b49589e2915bf6d7ed610db5705a06b1c9972040.tar.xz abuild-b49589e2915bf6d7ed610db5705a06b1c9972040.zip |
abuild: show all detected dependencies
This will hopefully help detect depends problems early
Diffstat (limited to 'abuild.in')
-rwxr-xr-x | abuild.in | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -915,6 +915,8 @@ trace_apk_deps() { for i in $autodeps; do echo "depend = $i" done | sort -u >> "$dir"/.PKGINFO + # display all depends + sed -n '/^depend =/s/depend = /\t/p' "$dir"/.PKGINFO >&2 } find_scanelf_paths() { |