commit 68be0d64f5a2655231ab896d6a56beb9c32a3e4f Author: Sukhbir Singh sukhbir@torproject.org Date: Sat May 6 08:02:38 2017 -0400
Exclude dirmngr.conf from Makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Makefile b/Makefile index 61554fe..548b2c2 100644 --- a/Makefile +++ b/Makefile @@ -4,11 +4,11 @@ VERSION := $(shell cat install.rdf|grep 'em:version'|cut -d> -f2|cut -d< -f1 FAKETIME := 200001010000
make-xpi: - zip -r ../torbirdy-$(VERSION).xpi * -x "debian/*" -x "ChangeLog" -x "Makefile" -x "gpg.conf" -x "import-translations.sh" -x "README.RELEASE" + zip -r ../torbirdy-$(VERSION).xpi * -x "debian/*" -x "ChangeLog" -x "Makefile" -x "gpg.conf" -x "dirmngr.conf" -x "import-translations.sh" -x "README.RELEASE"
make-reproducible: find . -print0 | xargs -0 touch -t $(FAKETIME) - zip -X ../torbirdy-$(VERSION).xpi `find . | sort` -x "debian/*" -x "ChangeLog" -x "Makefile" -x "gpg.conf" -x "import-translations.sh" -x "README.RELEASE" -x *.git* + zip -X ../torbirdy-$(VERSION).xpi `find . | sort` -x "debian/*" -x "ChangeLog" -x "Makefile" -x "gpg.conf" -x "dirmngr.conf" -x "import-translations.sh" -x "README.RELEASE" -x *.git*
clean: rm -f ../torbirdy-$(VERSION).xpi