[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

--warn-missing and dh_install?* (Re: Install files with debhelper or make install?)



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


Reply to: