abuild: automatically add libgcc to depends when libpthread is found
see http://redmine.alpinelinux.org/issues/409
This commit is contained in:
parent
a5937e5c45
commit
f9b62b89a6
10
abuild.in
10
abuild.in
@ -483,7 +483,14 @@ trace_apk_deps() {
|
||||
if [ -d "$pkgbasedir"/$name/usr/lib/pkgconfig ] \
|
||||
&& ! grep -q '^depend = pkgconfig' "$dir"/.PKGINFO; then
|
||||
msg "Added pkgconfig as dependency"
|
||||
echo "depend = pkgconfig" >> "$dir"/.PKGINFO
|
||||
autodeps="$autodeps pkgconfig"
|
||||
fi
|
||||
|
||||
# special case for libpthread: we need depend on libgcc
|
||||
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"
|
||||
fi
|
||||
for i in $(cat "$dir"/.needs-so 2>/dev/null); do
|
||||
found=
|
||||
@ -509,6 +516,7 @@ trace_apk_deps() {
|
||||
list_has "$found" $autodeps || autodeps="$autodeps $found"
|
||||
msg "Added '$found' as dependency as it has $i"
|
||||
done
|
||||
|
||||
[ -z "$autodeps" ] && return 0
|
||||
echo "# automatically detected:" >> "$dir"/.PKGINFO
|
||||
for i in $autodeps; do
|
||||
|
Loading…
x
Reference in New Issue
Block a user