Hey, I can get behind this patch although it is quite ugly. The directory is left after the build has completed and should at least be included in .gitignore as well as being removed on make clean. Can you edit the patch accordingly? -Michael > On 11 Dec 2019, at 15:49, Stefan Schantl wrote: > > This helps to keep a much cleaner environment. > > Signed-off-by: Stefan Schantl > --- > Makefile.am | 6 +++++- > 1 file changed, 5 insertions(+), 1 deletion(-) > > diff --git a/Makefile.am b/Makefile.am > index 1b9d90e..bf1dde1 100644 > --- a/Makefile.am > +++ b/Makefile.am > @@ -421,4 +421,8 @@ $(DEBIAN_TARBALL_NAME): dist > > .PHONY: debian > debian: $(DEBIAN_TARBALL_NAME) > - debuild -i -us -uc -b > + mkdir -pv debian-build/$(PACKAGE_NAME)-$(PACKAGE_VERSION)/debian > + cp -avf $(DEBIAN_TARBALL_NAME) debian-build > + cp -avf debian/* debian-build/$(PACKAGE_NAME)-$(PACKAGE_VERSION)/debian > + cd debian-build && tar -xvf $(DEBIAN_TARBALL_NAME) > + cd debian-build/$(PACKAGE_NAME)-$(PACKAGE_VERSION) && debuild -us -uc > -- > 2.20.1