mirror of
https://git.freebsd.org/ports.git
synced 2025-06-09 23:00:30 -04:00
- Add LICENSE_FILE - Switch to options helpers - Regenerate patches with `make makepatch`
15 lines
434 B
Text
15 lines
434 B
Text
--- xlhtml/nsxlview.orig 2002-03-20 15:32:50 UTC
|
|
+++ xlhtml/nsxlview
|
|
@@ -12,10 +12,8 @@ set source = $argv[1]
|
|
#set tmp = /tmp/$com:t.$$
|
|
#set html = $tmp.html
|
|
|
|
-set tmp = `mktemp -q /tmp/nsxlview.XXXXXX` || exit 1
|
|
-set tmp2 = `mktemp -q $tmp/nsxlview.XXXXXX` || exit 1
|
|
-set html = $tmp2.html
|
|
-
|
|
+set tmp = `mktemp -t nsxlview.XXXXXX` || exit 1
|
|
+set html = $tmp.html
|
|
|
|
xlhtml -a $source > $html
|
|
if ((!(-r $html)) | ($status)) then
|