diff options
author | Maxim Sobolev <sobomax@FreeBSD.org> | 2002-02-27 18:23:39 +0000 |
---|---|---|
committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2002-02-27 18:23:39 +0000 |
commit | 0fba8fa7c63a57b1afb70961ac2ea4d62737e8a5 (patch) | |
tree | a831653d1495a5216b47ab5a71bb8bb74f741e52 /textproc/xlhtml/files/patch-ae | |
parent | Fix some typos. (diff) |
Update to 0.4.
Submitted by: Masaharu FUJITA <fujita@hpc.cs.ehime-u.ac.jp>
Diffstat (limited to 'textproc/xlhtml/files/patch-ae')
-rw-r--r-- | textproc/xlhtml/files/patch-ae | 23 |
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 |