Skip to content

Commit 97cdb4e

Browse files
authored
Merge pull request #519 from katef/sv/grep-test-ignore-binary-files
Makefile: grep for 'FAIL' should use -I to ignore binary files.
2 parents c798ec1 + a6e9c2a commit 97cdb4e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,6 @@ STAGE_BUILD := ${STAGE_BUILD:Nbin/cvtpcre}
191191

192192
.if make(test)
193193
.END::
194-
grep FAIL ${BUILD}/tests/*/*res*; [ $$? -ne 0 ]
194+
grep -I FAIL ${BUILD}/tests/*/*res*; [ $$? -ne 0 ]
195195
.endif
196196

0 commit comments

Comments
 (0)