瀏覽代碼

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


Loading…
取消
儲存