Trent W. Buck wrote:
> I have a worse problem: I started with an empty debian/rules:
> 
>     %:
>       dh $@
> 
> And found that dh_strip was being called by "dh binary", not "dh
> binary-arch".

How is that a problem? (It will be called by either target; the two are
identical.)

> So I dutifully extended my makefile to include "dh
> build --before dh_strip".  And dh complains:

dh_strip is not run in the build target, it's run in the
binary/binary-arch target.

    binary:
        dh binary --until dh_auto_install
        ./waf --nocache install --destdir=debian/midori
        dh build --remaining --before dh_strip
        dh_strip --dbg-package=midori-dbg
        dh binary --remaining

It makes no sense to run dh build after dh binary; dh binary will run
all actions of the build target if they have not yet run.

-- 
see shy jo

Attachment: signature.asc
Description: Digital signature

Reply via email to