summaryrefslogtreecommitdiff
path: root/shells/scsh
diff options
context:
space:
mode:
authordillo <dillo>2003-07-03 14:29:50 +0000
committerdillo <dillo>2003-07-03 14:29:50 +0000
commit0afd1e89d9086ea03ca1417a6c3ef4aed2f187e8 (patch)
treee69fad03dcfbd58fd224e5e77229e4217ae97703 /shells/scsh
parentfa4c63f2af645575589ad5f9e13d2a5aa2c0be64 (diff)
downloadpkgsrc-0afd1e89d9086ea03ca1417a6c3ef4aed2f187e8.tar.gz
no longer needed after last update
Diffstat (limited to 'shells/scsh')
-rw-r--r--shells/scsh/patches/patch-ai22
1 files changed, 0 insertions, 22 deletions
diff --git a/shells/scsh/patches/patch-ai b/shells/scsh/patches/patch-ai
deleted file mode 100644
index a929db5a51b..00000000000
--- a/shells/scsh/patches/patch-ai
+++ /dev/null
@@ -1,22 +0,0 @@
-$NetBSD: patch-ai,v 1.3 2001/10/02 11:07:15 seb Exp $
-
---- scsh/scsh.scm.orig Sat Jun 2 19:43:12 2001
-+++ scsh/scsh.scm
-@@ -283,7 +283,7 @@
-
- ;;; Create a new temporary file and return its name.
- ;;; The optional argument specifies the filename prefix to use, and defaults
--;;; to "/usr/tmp/<pid>.", where <pid> is the current process' id. The procedure
-+;;; to "/var/tmp/<pid>.", where <pid> is the current process' id. The procedure
- ;;; scans through the files named <prefix>0, <prefix>1, ... until it finds a
- ;;; filename that doesn't exist in the filesystem. It creates the file with
- ;;; permission #o600, and returns the filename.
-@@ -301,7 +301,7 @@
- ".~a"))))))
-
- (define *temp-file-template*
-- (make-fluid (string-append "/usr/tmp/" (number->string (pid)) ".~a")))
-+ (make-fluid (string-append "/var/tmp/" (number->string (pid)) ".~a")))
-
-
- (define (temp-file-iterate maker . maybe-template)