Comment 51 for bug 1710278

Revision history for this message
Eric Desrochers (slashd) wrote :

In the multiple binary package case, the files are instead installed into debian/tmp/, and should be moved from there to the appropriate package build directory using dh_install(1).

From debhelper compatibility level 7 on, dh_install will fall back to looking in debian/tmp for files, if it doesn't find them in the current directory (or wherever you've told it to look using --sourcedir).

That is the problem:
dh_auto_install -B build --destdir=$(CURDIR)/debian/tmp
dh_auto_install -B build-singlethread --destdir=$(CURDIR)/debian/tmp-singlethread

I have to specify the src dir inside dh_install, cause current setup only rely on debian/tmp, the default when multiples binary package are in place.