From d1fac640fbb66e4a01dc53097bba17803cd4ed48 Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Sun, 22 May 2022 01:07:58 +0200 Subject: Makefile: Remove dependencies from `bundle` target This seemed to cause the `bundle` target to be run even in the packaged release tarball. In that case, the 'bundle/' directory should already exist, and we don't want to rebuild it. We might also have been able to resolve this by generating the 'bundle/' tar before the project `git archive` tar, but I couldn't figure out how to concatenate two tars together with BSD tar. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8d57d41..3933e77 100644 --- a/Makefile +++ b/Makefile @@ -46,7 +46,7 @@ $(MAN_PAGE): doc/wajir.1.txt a2x --no-xmllint --format manpage $< -bundle: bundle.lisp +bundle: mkdir -p lib/wajir cp -a wajir.asd src lib/wajir/ -- cgit v1.2.3