Skip to content

Commit

Permalink
fix bad grep pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
rainers committed Jul 4, 2015
1 parent 941faea commit 686dd35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion posix.mak
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ GREP = grep

checkwhitespace:
$(GREP) -n -U -P "([ \t]$$|\r)" $(CWS_MAKEFILES) ; test "$$?" -ne 0
$(GREP) -n -U -P "( $$|\r\t)" $(NOT_MAKEFILES) ; test "$$?" -ne 0
$(GREP) -n -U -P "( $$|\r|\t)" $(NOT_MAKEFILES) ; test "$$?" -ne 0


#############################
Expand Down

0 comments on commit 686dd35

Please sign in to comment.