diff options
author | nork <nork@FreeBSD.org> | 2002-10-27 06:09:05 +0000 |
---|---|---|
committer | nork <nork@FreeBSD.org> | 2002-10-27 06:09:05 +0000 |
commit | 5f7253643e880af861581fc115c89fb585b7ee0a (patch) | |
tree | 46694d3f9d213adedea96db87662ef4d462edf83 /lang/gauche | |
parent | 3f139bbf02a5be720f59c9983466cf762cb7008d (diff) | |
download | FreeBSD-ports-5f7253643e880af861581fc115c89fb585b7ee0a.zip FreeBSD-ports-5f7253643e880af861581fc115c89fb585b7ee0a.tar.gz |
Fix function info doesn't work.
PR: ports/44129
Submitted by: Kimura Fuyuki <fuyuki@hadaly.org>
Approved by: maintainer
Diffstat (limited to 'lang/gauche')
-rw-r--r-- | lang/gauche/files/patch-lib-gauche-interactive-info.scm | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/lang/gauche/files/patch-lib-gauche-interactive-info.scm b/lang/gauche/files/patch-lib-gauche-interactive-info.scm new file mode 100644 index 0000000..4500012 --- /dev/null +++ b/lang/gauche/files/patch-lib-gauche-interactive-info.scm @@ -0,0 +1,14 @@ +--- lib/gauche/interactive/info.scm.orig Fri Jul 12 15:57:01 2002 ++++ lib/gauche/interactive/info.scm Thu Oct 24 11:28:44 2002 +@@ -61,9 +61,9 @@ + (else '()))) + (instpath + (let1 pathcomps (string-split (gauche-library-directory) #\/) +- (if (> (length pathcomps) 3) ++ (if (> (length pathcomps) 4) + (list (apply build-path +- (append (drop-right pathcomps 3) '("info")))) ++ (append (drop-right pathcomps 4) '("info")))) + '()))) + (in-place (list "../doc"))) + (append syspath instpath in-place))) |