summaryrefslogtreecommitdiff
path: root/textproc/xlhtml/files/patch-ae
diff options
context:
space:
mode:
Diffstat (limited to 'textproc/xlhtml/files/patch-ae')
-rw-r--r--textproc/xlhtml/files/patch-ae23
1 files changed, 0 insertions, 23 deletions
diff --git a/textproc/xlhtml/files/patch-ae b/textproc/xlhtml/files/patch-ae
deleted file mode 100644
index 75c74e152ee5..000000000000
--- a/textproc/xlhtml/files/patch-ae
+++ /dev/null
@@ -1,23 +0,0 @@
- --- xlHtml/nsxlview.orig Tue Mar 28 13:49:06 2000
- +++ xlHtml/nsxlview Tue Mar 28 14:34:35 2000
- @@ -1,4 +1,4 @@
- -#!/bin/tcsh
- +#!/bin/csh
-
- if ($#argv != 1) then
- echo "Usage: $0 file.xls"
- @@ -9,12 +9,12 @@
-
- #Generate a unique html filename (/tmp/scriptname.pidnum.html)
- set com = $0
- -set tmp = /tmp/$com:t.$$
- +set tmp = `mktemp -t $0:t` || exit 1
- set html = $tmp.html
-
- xlHtml -a $source > $html
- -if ((!(-s $html)) | ($status)) then
- - echo "$0: failed to generate HTML file"
- +if ((!(-r $html)) | ($status)) then
- + echo "$0"": failed to generate HTML file"
- exit 1
- endif