# HG changeset patch # User Pascal Bellard # Date 1222331159 0 # Node ID 3dcebf4831b5b8479c141eeac56d4a156b921642 # Parent a1ce8666445b2e0e29c0768a974388469f524e32 tazwok check BUILD_DEPENDS too diff -r a1ce8666445b -r 3dcebf4831b5 tazwok --- a/tazwok Thu Sep 04 15:56:44 2008 +0000 +++ b/tazwok Thu Sep 25 08:25:59 2008 +0000 @@ -89,6 +89,7 @@ cmp|compare Compare the wok and the cooked pkgs (--remove old pkgs). list List all packages in the wok tree or by category. info Get information about a package in the wok. + check Check every receipt for common errors. check-log Check the process log file of a package. search Search for a package in the wok by pattern or name. compile Configure and build a package using the receipt rules. @@ -680,6 +681,12 @@ echo -e "$MSG $i" MSG="" done + MSG="Missing build dependencies for $PACKAGE $VERSION$EXTRAVERSION :\n" + for i in $BUILD_DEPENDS; do + [ -d $i ] && continue + echo -e "$MSG $i" + MSG="" + done MSG="Dependencies loop between $PACKAGE and :\n" ALL_DEPS="" check_for_deps_loop $PACKAGE $DEPENDS