From 814505fb71b998d4cc87481dfc9cfa4cdc9f86c9 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Mon, 8 May 2023 11:42:33 +0200 Subject: [PATCH] buildsys: fix source tarball generation debian want's this to be a level higher as it seems like autotools also defaults to generating a source tar ball that contains PROJECT-VERSION as top level directory. Otherwise dpkg-source thinks that the whole source differs by itself, added at another level, going then bonkers. Signed-off-by: Thomas Lamprecht --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f3554a4f..2c7d8814 100644 --- a/Makefile +++ b/Makefile @@ -24,7 +24,7 @@ $(DEB): $(BUILDDIR) lintian $@ $(ORIG_SRC_TAR): $(BUILDDIR) - tar czf $(ORIG_SRC_TAR) -C $(BUILDDIR) --exclude='./debian' . + tar czf $(ORIG_SRC_TAR) --exclude="$(BUILDDIR)/debian" $(BUILDDIR) .PHONY: dsc dsc: $(DSC)