fix the syntax error

This commit is contained in:
Sylvestre Ledru 2013-05-16 05:51:07 +00:00
parent f11bd58b24
commit 9a38e3eb94

4
debian/rules vendored
View File

@ -229,8 +229,8 @@ override_dh_auto_test:
REPORT=reports/scilab-code-coverage.info; \
mkdir -p reports/; \
lcov --directory build-llvm/ --capture --ignore-errors source --output-file $$REPORT; \
lcov --remove $$REPORT "/usr*" -o $$REPORT
lcov --remove $$REPORT "build-llvm/*" -o $$REPORT
lcov --remove $$REPORT "/usr*" -o $$REPORT; \
lcov --remove $$REPORT "build-llvm/*" -o $$REPORT; \
genhtml -o reports/coverage --show-details --highlight --legend $$REPORT; \
fi