blob: 0d6b931b4486e8b26a018db916aac3b38530b004 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
$NetBSD: patch-scripts_lcov-report,v 1.1 2012/12/22 02:10:42 wiz Exp $
Fix unportable test(1) construct.
--- scripts/lcov-report.orig 2011-03-11 14:49:19.000000000 +0000
+++ scripts/lcov-report
@@ -11,7 +11,7 @@
usage()
{
- test X$1 == X0 || exec >&2
+ test X$1 = X0 || exec >&2
cat << EOF
usage: coverage-report OPTIONS
where OPTIONS are
|