diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2011-03-04 22:34:37 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2011-03-04 22:39:49 +0000 |
commit | a4a64e3f4ce9ee2b662e3ea6b1d3a4906e3120a4 (patch) | |
tree | e9d1095fcc0a314a98a5288b4598dbcd713fbe1a | |
parent | 37c29649f7275acc8e9aa3dc924a956edccc5e2c (diff) | |
download | abuild-a4a64e3f4ce9ee2b662e3ea6b1d3a4906e3120a4.tar.gz abuild-a4a64e3f4ce9ee2b662e3ea6b1d3a4906e3120a4.tar.bz2 abuild-a4a64e3f4ce9ee2b662e3ea6b1d3a4906e3120a4.tar.xz abuild-a4a64e3f4ce9ee2b662e3ea6b1d3a4906e3120a4.zip |
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)
-rwxr-xr-x | abuild.in | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 ] \ |