blob: 8a23eb8c1d98889b202de88a470994fb37fdd060 (
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
25
|
$NetBSD: patch-ae,v 1.1 2001/04/01 16:04:24 dmcmahill Exp $
--- telakka.in.orig Thu Jan 25 04:57:21 2001
+++ telakka.in Sun Apr 1 11:32:54 2001
@@ -80,5 +80,5 @@
.-c|.--compile-only)
compileOnly=true
- if [ "$shared" == "true" ]; then
+ if [ "$shared" = "true" ]; then
echo "telakka: compile-only and shared are mutually exclusive." 1>&2
exit 1
@@ -87,5 +87,5 @@
.--shared)
shared=true
- if [ "$compileOnly" == "true" ]; then
+ if [ "$compileOnly" = "true" ]; then
echo "telakka: compile-only and shared are mutually exclusive." 1>&2
exit 1
@@ -149,5 +149,5 @@
in
*.ct)
- if [ "$wrote_only_file" == "true" ]; then
+ if [ "$wrote_only_file" = "true" ]; then
echo "telakka: cannot combine compile-only, output-file, and multiple ct-files." 1>&2
exit 1
|