From 60df7d360ae4988dd324bd8f32d432806b790edd Mon Sep 17 00:00:00 2001 From: Steffen Jaeckel Date: Mon, 22 Jan 2018 11:01:34 +0100 Subject: [PATCH] Fix 'fixme check' The error produced by `make zipup` - but ignored by make - was: ``` ... fixme check makefile_include.mk:448: recipe for target 'zipup' failed make: [zipup] Error 123 (ignored) mkdir -p libtomcrypt-... ``` --- makefile_include.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile_include.mk b/makefile_include.mk index 3105effc..7d619992 100644 --- a/makefile_include.mk +++ b/makefile_include.mk @@ -455,7 +455,7 @@ zipup: $(call print-help,zipup,Prepare the archives for a release) doc/crypt.pdf @# 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 !!! ##############' + -@(find libtomcrypt-$(VERSION)/ -type f | xargs grep 'FIXM[E]') && echo '############## BEWARE: the "fixme" marker was found !!! ##############' || true 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