From e956e7d76e4aa508dec7b1ae1f05857c74cd2fa6 Mon Sep 17 00:00:00 2001 From: David Griffith Date: Tue, 31 Jul 2018 02:06:31 -0700 Subject: [PATCH] Fix broken use of "git archive". --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9b20d09..9a83ec7 100644 --- a/Makefile +++ b/Makefile @@ -295,7 +295,7 @@ uninstall_sfrotz: dist: frotz-$(GIT_TAG).tar.gz frotz-$(GIT_TAG).tar.gz: - git archive --format=tar.gz -o "frotz-$(GIT_TAG).tar.gz" "$(GIT_TAG)" + git archive --format=tar.gz --prefix frotz-$(GIT_TAG)/ -o "frotz-$(GIT_TAG).tar.gz" HEAD clean: $(SUB_CLEAN) rm -f $(SRCDIR)/*.h \ -- 2.34.1