Skip to content

Commit 60df7d3

Browse files
committed
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-... ```
1 parent c7ff3bb commit 60df7d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

makefile_include.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -455,7 +455,7 @@ zipup: $(call print-help,zipup,Prepare the archives for a release) doc/crypt.pdf
455455
@# files/dirs excluded from "git archive" are defined in .gitattributes
456456
git archive --format=tar --prefix=libtomcrypt-$(VERSION)/ HEAD | tar x
457457
@echo 'fixme check'
458-
-@(find libtomcrypt-$(VERSION)/ -type f | xargs grep 'FIXM[E]') && echo '############## BEWARE: the "fixme" marker was found !!! ##############'
458+
-@(find libtomcrypt-$(VERSION)/ -type f | xargs grep 'FIXM[E]') && echo '############## BEWARE: the "fixme" marker was found !!! ##############' || true
459459
mkdir -p libtomcrypt-$(VERSION)/doc
460460
cp doc/crypt.pdf libtomcrypt-$(VERSION)/doc/crypt.pdf
461461
tar -c libtomcrypt-$(VERSION)/ | xz -6e -c - > crypt-$(VERSION).tar.xz

0 commit comments

Comments
 (0)