Skip to content

Commit 95221b1

Browse files
authored
Makefile: fix 'lesson-fixme' target for Windows (#486)
Git for Windows doesn't provide fgrep, which is a shortcut to call `grep -F` on Mac and Linux. Instead, we have to use full arguments.
1 parent 6861f75 commit 95221b1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ lesson-files :
146146

147147
## * lesson-fixme : show FIXME markers embedded in source files
148148
lesson-fixme :
149-
@fgrep -i -n FIXME ${MARKDOWN_SRC} || true
149+
@grep --fixed-strings --word-regexp --line-number --no-messages FIXME ${MARKDOWN_SRC} || true
150150

151151
##
152152
## IV. Auxililary (plumbing) commands

0 commit comments

Comments
 (0)