summaryrefslogtreecommitdiffstats
path: root/abuild.in
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2011-03-04 22:34:37 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2011-03-04 22:39:49 +0000
commita4a64e3f4ce9ee2b662e3ea6b1d3a4906e3120a4 (patch)
treee9d1095fcc0a314a98a5288b4598dbcd713fbe1a /abuild.in
parent37c29649f7275acc8e9aa3dc924a956edccc5e2c (diff)
downloadabuild-a4a64e3f4ce9ee2b662e3ea6b1d3a4906e3120a4.tar.bz2
abuild-a4a64e3f4ce9ee2b662e3ea6b1d3a4906e3120a4.tar.xz
abuild: bugfix in dep tracing
due to unintialized and non-local variable the tracing of deps didnt work as expected when dependencies was provided by the apkbuild itself. (libgcc ended up depending on libgcj which depended on binutils)
Diffstat (limited to 'abuild.in')
-rwxr-xr-xabuild.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/abuild.in b/abuild.in
index ca77471..f9c59f2 100755
--- a/abuild.in
+++ b/abuild.in
@@ -624,7 +624,7 @@ find_so_files() {
trace_apk_deps() {
local name="$1"
local dir="$2"
- local i= j= found= autodeps= deppkgs= missing= so_paths=
+ local i= j= found= autodeps= deppkgs= missing= so_paths= self_provided=
msg "Tracing dependencies for $name..."
# add pkgconfig if usr/lib/pkgconfig is found
if [ -d "$pkgbasedir"/$name/usr/lib/pkgconfig ] \