Junichi Uekawa wrote:
> It might be nice to automate the not-yet-uploaded package
> detection, and compile them all, and other thing...
> 
> find -type d -name debian | while read A; do
>       (
>       cd $(dirname $A);
>       debuild-pbuilder;
>       )
> done

Note that build/Makefile already does something similar when building
with DEBUG=y:

        if [ $(DEBUG) = y ] ; then \
                mkdir -p $(DEBUGUDEBDIR); \
                cd $(DEBUGUDEBDIR); \
                export DEB_BUILD_OPTIONS="debug"; \
                $(APT_GET) source --build --yes $$needed; \
                cd ..; \
        else \
                echo Need to download : $$needed; \
                if [ -n "$$needed" ]; then \
                $(APT_GET) -dy install $$needed; \
                fi; \
        fi; \

-- 
see shy jo

Attachment: msg22056/pgp00000.pgp
Description: PGP signature

Reply via email to