Suppress make clean rm errors when files are missing

This commit is contained in:
Ryan Cavicchioni 2021-04-10 04:01:14 +00:00
parent ffe2c08a35
commit 01a0601652
Signed by: ryanc
GPG Key ID: 877EEDAF9245103D

View File

@ -85,11 +85,12 @@ rpm:
deb-clean:
$(Q) rm -rf $(DEBBUILDDIR)
$(Q) rm $(BUILDDIR)/*.changes
$(Q) rm $(BUILDDIR)/*.buildinfo
$(Q) rm $(BUILDDIR)/*.deb
$(Q) rm $(BUILDDIR)/*.tar.*
$(Q) rm -f $(BUILDDIR)/*.dsc
$(Q) rm -f $(BUILDDIR)/*.changes
$(Q) rm -f $(BUILDDIR)/*.buildinfo
$(Q) rm -f $(BUILDDIR)/*.deb
$(Q) rm -f $(BUILDDIR)/*.tar.*
rpm-clean:
$(Q) rm -rf $(RPMBUILDDIR)
$(Q) rm $(BUILDDIR)/*.rpm
$(Q) rm -f $(BUILDDIR)/*.rpm