From d7939d48cad83ddc9ce7813eedc088d1d22ab120 Mon Sep 17 00:00:00 2001 From: Iustin Pop Date: Sun, 1 May 2016 04:26:37 +0200 Subject: [PATCH] Explicitly remove the old archive in make dist Currently it's implicitly removed by `tar c`, but that's not nice. --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index e2c0e2a..69e3acd 100644 --- a/Makefile +++ b/Makefile @@ -47,6 +47,7 @@ install: $(PROGS) rm -f $(MANDIR)/man8/stinit.8.gz; gzip $(MANDIR)/man8/stinit.8; fi) dist: + rm -f "$(TARFILE)" && \ BASE=`mktemp -d` && \ trap "rm -rf $$BASE" EXIT && \ DIST="$$BASE/$(RELEASEDIR)" && \