Hi,
On Tue, Aug 13, 2013 at 11:37:21PM +0200, Joey Hess wrote:
> Can you run with DH_VERBOSE so I can see how it's running cp in this
> particular package?
Sure.
The .installs basically installed by wildcard:
$ cat debian/libreoffice-core.install
libreoffice-core/usr/* usr
And this results in
[...]
dh_install -A --sourcedir=debian/tmp/pkg --fail-missing
cd 'debian/tmp/pkg/libreoffice-core/usr/lib/..' && find 'lib' ! \(
-regex .\*CVS.\* -or -regex .\*\\.svn.\* -or -regex .\*\\.bzr.\* -or -regex
.\*\\.git.\* \) \( -type f -or -type l \) -exec cp --parents -dp {}
/home/rene/LibreOffice/master/core/debian/libreoffice-core/usr/ \;
cd 'debian/tmp/pkg/libreoffice-core/usr/lib/..' && find 'lib' ! \(
-regex .\*CVS.\* -or -regex .\*\\.svn.\* -or -regex .\*\\.bzr.\* -or -regex
.\*\\.git.\* \) \( -type d -and -empty \) -exec cp --parents -a {}
/home/rene/LibreOffice/master/core/debian/libreoffice-core/usr/ \;
[...]
I thought about find not caring about the -exec return status, but:
rene@frodo:~$ find tmp -name "notexisting" | xargs rm
rm: missing operand
Try `rm --help' for more information.
rene@frodo:~$ echo $?
123
rene@frodo:~$
Regards,
Rene
--
To UNSUBSCRIBE, email to [email protected]
with a subject of "unsubscribe". Trouble? Contact [email protected]