From f3e00a253fc4d86de64e42ec53924ca1bbcf0214 Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Sun, 8 May 2016 12:46:15 +0000 Subject: [PATCH] Let the tarball-dist target skip files in .git --- GNUmakefile.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GNUmakefile.in b/GNUmakefile.in index d159d5bc..d7a985d7 100644 --- a/GNUmakefile.in +++ b/GNUmakefile.in @@ -1,6 +1,6 @@ # Note: GNUmakefile is built automatically from GNUmakefile.in # -# $Id: GNUmakefile.in,v 1.249 2016/05/08 10:48:19 fabiankeil Exp $ +# $Id: GNUmakefile.in,v 1.250 2016/05/08 12:46:05 fabiankeil Exp $ # # Written by and Copyright (C) 2001-2016 members of the # Privoxy team. https://www.privoxy.org/ @@ -406,7 +406,7 @@ tarball-dist: dist-check clean clobber for i in `find . -type f -a -not \( -path "*/CVS*" -o -name ".*" \ -o -path "*/debian/*" -o -path "*/actions/*" -o -name "*.php" -o \ - -name "PACKAGERS" \) | sort`; do \ + -name "PACKAGERS" -o -path "*.git/*" \) | sort`; do \ files="$$files privoxy-$(VERSION)-$(CODE_STATUS)/$$i"; \ done && \ cd .. && $(TAR) -cvhf privoxy-$(VERSION)-$(CODE_STATUS)-src.tar $$files ; \ -- 2.39.2