diff options
author | Teddy Wing | 2022-05-22 01:07:58 +0200 |
---|---|---|
committer | Teddy Wing | 2022-05-22 01:07:58 +0200 |
commit | d1fac640fbb66e4a01dc53097bba17803cd4ed48 (patch) | |
tree | 5f9ee6d66e4c87fb8337e5e3d0cee6d537ed73f4 | |
parent | 5752d9f149108711ed8347b4c60f6220f6f58a8f (diff) | |
download | wajir-d1fac640fbb66e4a01dc53097bba17803cd4ed48.tar.bz2 |
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.
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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/ |