blob: 5ff8b307667183c22214b163a3dfa5065f543037 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
$NetBSD: patch-ac,v 1.2 2009/02/21 18:54:41 gdt Exp $
Applied upstream 2009-02-21.
--- testw.orig 2007-09-21 08:08:32.000000000 +0000
+++ testw 2007-09-21 08:08:48.000000000 +0000
@@ -58,7 +58,7 @@
while read type caps format comment; do
for i in $EXCL; do
- if [ "$format" == "$i" ]; then
+ if [ "$format" = "$i" ]; then
caps="------"
fi
done
@@ -97,7 +97,7 @@
while read type caps format comment; do
for i in $EXCL; do
- if [ "$format" == "$i" ]; then
+ if [ "$format" = "$i" ]; then
caps="------"
fi
done
|