]> git.ipfire.org Git - ipfire-3.x.git/commitdiff
naoki: Log dependency information.
authorMichael Tremer <michael.tremer@ipfire.org>
Wed, 28 Oct 2009 20:55:27 +0000 (21:55 +0100)
committerMichael Tremer <michael.tremer@ipfire.org>
Wed, 28 Oct 2009 20:55:27 +0000 (21:55 +0100)
tools/package-functions

index 09319ed010a3df7efc9f64ff896f9d7b71ae7b95..5f924763d635cfe994a4a9cf230ca01abfb03c0e 100644 (file)
@@ -145,21 +145,27 @@ function package_summary() {
 function package_runtime_dependencies() {
        local package
        for package in $(package_get ${1} PKG_DEPENDENCIES); do
-               find_package ${package}
+               package=$(find_package ${package})
+               echo "${package}"
+               log DEBUG "  Got runtime dep: ${package}"
        done
 }
 
 function package_build_dependencies() {
        local package
        for package in $(package_get ${1} PKG_BUILD_DEPENDENCIES); do
-               find_package ${package}
+               package=$(find_package ${package})
+               echo "${package}"
+               log DEBUG "  Got build dep: ${package}"
        done
 }
 
 function package_toolchain_dependencies() {
        local package
        for package in $(package_get ${1} PKG_TOOLCHAIN_DEPS); do
-               find_package ${package}
+               package=$(find_package ${package})
+               echo "${package}"
+               log DEBUG "  Got toolchain dep: ${package}"
        done
 }