From 96acbdd7265f504d06783adfd6322a6675c41c0a Mon Sep 17 00:00:00 2001 From: Andre Heinecke Date: Tue, 6 Jun 2017 16:38:02 +0200 Subject: [PATCH] speedo: Fix source tar call ambiguity * build-aux/speedo.mk (dist-source): Expand exclude-vc to exclude-vcs. -- Tar 1.29 also has exclude-vcs-ignores so this became ambiguous. Signed-off-by: Andre Heinecke --- build-aux/speedo.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-aux/speedo.mk b/build-aux/speedo.mk index c799863d9..76f712fec 100644 --- a/build-aux/speedo.mk +++ b/build-aux/speedo.mk @@ -1127,10 +1127,10 @@ dist-source: installer (set -e;\ tarname="$(INST_NAME)-$(INST_VERSION)_$(BUILD_DATESTR).tar" ;\ [ -f "$$tarname" ] && rm "$$tarname" ;\ - tar -C $(topsrc) -cf "$$tarname" --exclude-backups --exclude-vc \ + tar -C $(topsrc) -cf "$$tarname" --exclude-backups --exclude-vcs \ --transform='s,^\./,$(INST_NAME)-$(INST_VERSION)/,' \ --anchored --exclude './PLAY' . ;\ - tar --totals -rf "$$tarname" --exclude-backups --exclude-vc \ + tar --totals -rf "$$tarname" --exclude-backups --exclude-vcs \ --transform='s,^,$(INST_NAME)-$(INST_VERSION)/,' \ PLAY/stamps/stamp-*-00-unpack PLAY/src swdb.lst swdb.lst.sig ;\ [ -f "$$tarname".xz ] && rm "$$tarname".xz;\