From ce93eaa5773895fa6f41c1e81802df9d6e45b40d Mon Sep 17 00:00:00 2001 From: Steffen Jaeckel Date: Mon, 16 Oct 2017 19:51:14 +0200 Subject: [PATCH] add fixme-check to zipup make-target (cherry picked from commit 6c83a2f36365a44a739bb6f8d932b7c6f6a411e0) --- makefile_include.mk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/makefile_include.mk b/makefile_include.mk index f5c0c7b..3b22260 100644 --- a/makefile_include.mk +++ b/makefile_include.mk @@ -454,6 +454,8 @@ zipup: $(call print-help,zipup,Prepare the archives for a release) doc/crypt.pdf rm -rf libtomcrypt-$(VERSION) crypt-$(VERSION).* @# files/dirs excluded from "git archive" are defined in .gitattributes git archive --format=tar --prefix=libtomcrypt-$(VERSION)/ HEAD | tar x + @echo 'fixme check' + -@(find libtomcrypt-$(VERSION)/ -type f | xargs grep 'FIXM[E]') && echo '############## BEWARE: the "fixme" marker was found !!! ##############' mkdir -p libtomcrypt-$(VERSION)/doc cp doc/crypt.pdf libtomcrypt-$(VERSION)/doc/crypt.pdf tar -c libtomcrypt-$(VERSION)/ | xz -6e -c - > crypt-$(VERSION).tar.xz