소스 검색

Fix check-build verbosity.

tags/v0.99.beta17
Sam Hocevar sam 15 년 전
부모
커밋
1688fce838
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. +5
    -1
      test/check-build

+ 5
- 1
test/check-build 파일 보기

@@ -29,7 +29,11 @@ fi
failure=0
for dir in caca src cxx examples ruby tools; do
pushd ../$dir >/dev/null
for x in $(make echo-sources); do
for x in $(make -s echo-sources); do
case "$x" in
*.c|*.cpp|*.h|*.m) ;;
*) continue ;;
esac
if grep '[[:space:]]$' "$x" >/dev/null 2>&1; then
echo "error: $dir/$x contains trailing spaces"
failure=1


불러오는 중...
취소
저장