On Sun, Mar 09, 2008 at 09:03:21PM -0300, Felipe Sateler wrote:

> >>> But I want to use dh_installman, dh_installexamples and the linke. I
> >>> don't want to do a big dh_install run. The goal is to use the helper
> >>> scripts to take the advantage of them.
Agreed, per the first paragraph of dh_install(1).

> > Does dh_install run dh_installman for the files in dh_install? I didn't
> > know this. I though dh_install installs only the files in package.install.
No.  You might get comparable behavior with something like:

( cd debian/tmp && find ) |
        grep -Fvxe "$(cd debian/libfoo0 && find)" \
                -e "$(cd debian/libfoo-dev && find)"
                
For --list-missing, add: || [ $? -eq 1 ]
For --fail-missing, add: ; [ $? -eq 1 ]

Justin


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to