From 2a107dd8e036568e9d01b31b83e3d6e3f7f71f64 Mon Sep 17 00:00:00 2001 From: Jing Luo Date: Fri, 27 Sep 2024 22:45:53 +0900 Subject: [PATCH] common: buildsys: Makefile: drop `--no-pre-clean` There is no difference in the source or binary packge running with or without `--no-pre-clean`. On the other hand, dpkg-buildpackge complains loudly when `--no-pre-clean` is specified, so let's remove it. Signed-off-by: Jing Luo --- common/pkg/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/pkg/Makefile b/common/pkg/Makefile index 1e5cf1d..cbefdf7 100644 --- a/common/pkg/Makefile +++ b/common/pkg/Makefile @@ -51,7 +51,7 @@ $(BUILDDIR): debian PVE Proxmox Makefile .PHONY: deb deb: $(DEB) $(DEB): $(BUILDDIR) - cd $(BUILDDIR); dpkg-buildpackage -b -us -uc --no-pre-clean + cd $(BUILDDIR); dpkg-buildpackage -b -us -uc lintian $(DEB) .PHONY: dsc