summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2010-12-17 18:57:49 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2010-12-17 18:57:49 +0000
commite524bc68e9679694d39f41f1f8388f294851fd7c (patch)
tree1d536c70918388d2f56474d3d2c6c4f08c1e8e66
parent9c5ab15b44e80a97ef141b55d57d6553f013f57c (diff)
downloadabuild-e524bc68e9679694d39f41f1f8388f294851fd7c.tar.bz2
abuild-e524bc68e9679694d39f41f1f8388f294851fd7c.tar.xz
abuild: improve output messages for dep tracing
-rwxr-xr-xabuild.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/abuild.in b/abuild.in
index c0e96f9..e5809dc 100755
--- a/abuild.in
+++ b/abuild.in
@@ -526,7 +526,7 @@ trace_apk_deps() {
# add pkgconfig if usr/lib/pkgconfig is found
if [ -d "$pkgbasedir"/$name/usr/lib/pkgconfig ] \
&& ! grep -q '^depend = pkgconfig' "$dir"/.PKGINFO; then
- msg "Added pkgconfig as dependency"
+ msg " added pkgconfig (found /usr/lib/pkgconfig)"
autodeps="$autodeps pkgconfig"
fi
@@ -534,7 +534,7 @@ trace_apk_deps() {
if grep -q -w '^libpthread.so.*' "$dir"/.needs-so 2>/dev/null \
&& ! grep -q -w "^depend = libgcc" "$dir"/.PKGINFO; then
autodeps="$autodeps libgcc"
- msg "Added libgcc as dependency due to libpthread"
+ msg " added libgcc (due to libpthread)"
fi
for i in $(cat "$dir"/.needs-so 2>/dev/null); do
found=
@@ -565,7 +565,7 @@ trace_apk_deps() {
fi
if [ "$found" != "$name" ] && ! list_has "$found" $autodeps; then
autodeps="$autodeps $found"
- msg "Added '$found' as dependency"
+ msg " added $found"
fi
done