summaryrefslogtreecommitdiff
path: root/math/tela
diff options
context:
space:
mode:
authordmcmahill <dmcmahill@pkgsrc.org>2001-04-01 16:04:24 +0000
committerdmcmahill <dmcmahill@pkgsrc.org>2001-04-01 16:04:24 +0000
commit574eeb533a91e8cfb76d49e2891b7ec5aaedf666 (patch)
tree1f6c0312f822beb037b61c0d0c1b40d741eab264 /math/tela
parent6229897ab18600a628d094a47a936fe68a0819ef (diff)
downloadpkgsrc-574eeb533a91e8cfb76d49e2891b7ec5aaedf666.tar.gz
fix broken shell script. Its [ "$foo" = "$bar" ] not [ "$foo" == "$bar"].
Diffstat (limited to 'math/tela')
-rw-r--r--math/tela/files/patch-sum3
-rw-r--r--math/tela/patches/patch-ae25
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