summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndre Heinecke <aheinecke@intevation.de>2017-06-06 16:38:02 +0200
committerAndre Heinecke <aheinecke@intevation.de>2017-06-06 16:40:40 +0200
commit96acbdd7265f504d06783adfd6322a6675c41c0a (patch)
tree6c263679bf88957efa689fdce84ae0e4707d8e12
parentcommon,g10: Fix typos. (diff)
downloadgnupg2-96acbdd7265f504d06783adfd6322a6675c41c0a.tar.xz
gnupg2-96acbdd7265f504d06783adfd6322a6675c41c0a.zip
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 <aheinecke@intevation.de>
-rw-r--r--build-aux/speedo.mk4
1 files 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;\