summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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