Fix idiotic find(1) argument flaw.
Use `bump' instead of `revbump'.
This commit is contained in:
parent
f0e2b82261
commit
b97cd40f5c
4
Makefile
4
Makefile
@ -14,6 +14,6 @@ dist-clean:
|
||||
qa:
|
||||
utils/qa
|
||||
|
||||
revbump:
|
||||
utils/revbump MAJORVER=$(MAJORVER) MINORVER=$(MINORVER)
|
||||
bump:
|
||||
utils/bump MAJORVER=$(MAJORVER) MINORVER=$(MINORVER)
|
||||
|
||||
|
||||
6
utils/qa
6
utils/qa
@ -12,7 +12,8 @@ enc:
|
||||
@echo '======================================================================'
|
||||
@echo '$@: check file encodings'
|
||||
@echo '======================================================================'
|
||||
find . $(FIND_GBK) -type f -exec file '{}' '+' | grep -v GB
|
||||
find . -not '(' $(FIND_VCS) ')' $(FIND_GBK) \
|
||||
-type f -exec file '{}' '+' | grep -v GB
|
||||
find . -not '(' $(FIND_VCS) ')' -not '(' $(FIND_GBK) ')' \
|
||||
-type f -exec file '{}' '+' | grep GB
|
||||
|
||||
@ -20,7 +21,8 @@ lt:
|
||||
@echo '======================================================================'
|
||||
@echo '$@: check line terminators'
|
||||
@echo '======================================================================'
|
||||
find . $(FIND_CRLF) -type f -exec file '{}' '+' | grep -v CRLF
|
||||
find . -not '(' $(FIND_VCS) ')' $(FIND_CRLF) \
|
||||
-type f -exec file '{}' '+' | grep -v CRLF
|
||||
find . -not '(' $(FIND_VCS) ')' -not '(' $(FIND_CRLF) ')' \
|
||||
-type f -exec file '{}' '+' | grep CRLF
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user