diff options
author | dmcmahill <dmcmahill> | 2001-04-01 16:04:24 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill> | 2001-04-01 16:04:24 +0000 |
commit | d1e1c21b36c207af9f4abf92013afad11232b2fe (patch) | |
tree | 1f6c0312f822beb037b61c0d0c1b40d741eab264 /math | |
parent | 77a419191f3deef6731e98268a6a52e3abeb4b24 (diff) | |
download | pkgsrc-d1e1c21b36c207af9f4abf92013afad11232b2fe.tar.gz |
fix broken shell script. Its [ "$foo" = "$bar" ] not [ "$foo" == "$bar"].
Diffstat (limited to 'math')
-rw-r--r-- | math/tela/files/patch-sum | 3 | ||||
-rw-r--r-- | math/tela/patches/patch-ae | 25 |
2 files changed, 27 insertions, 1 deletions
diff --git a/math/tela/files/patch-sum b/math/tela/files/patch-sum index c4671aac77c..0f6e5c789c9 100644 --- a/math/tela/files/patch-sum +++ b/math/tela/files/patch-sum @@ -1,9 +1,10 @@ -$NetBSD: patch-sum,v 1.7 2001/03/30 00:12:02 jtb Exp $ +$NetBSD: patch-sum,v 1.8 2001/04/01 16:04:25 dmcmahill Exp $ SHA1 (patch-aa) = 2a2033c3d3bddbfcfaebb189223fc320fb82c4cc SHA1 (patch-ab) = 67d91c90455d2e294bf444edd9f309a4d33038d3 SHA1 (patch-ac) = 065065f4011eb14a4d3a3481be609323e5e316b1 SHA1 (patch-ad) = 1276a6d1ef5876376a4dcd9a1dacfd7e09f106fd +SHA1 (patch-ae) = ad36a0b3d6d9e4e48e3e266ea9d88c6d3e5d918d SHA1 (patch-af) = a126910bd70b2f1fbde2f4609cace499795d0e0c SHA1 (patch-ag) = 5090a139f0a7dfb04e0714db698d5f2e5680f8c1 SHA1 (patch-ah) = 4db7d142e30ee5d813e8a827ee49e72faacebd25 diff --git a/math/tela/patches/patch-ae b/math/tela/patches/patch-ae new file mode 100644 index 00000000000..8a23eb8c1d9 --- /dev/null +++ b/math/tela/patches/patch-ae @@ -0,0 +1,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 |