diff options
author | Norikatsu Shigemura <nork@FreeBSD.org> | 2002-10-27 06:09:05 +0000 |
---|---|---|
committer | Norikatsu Shigemura <nork@FreeBSD.org> | 2002-10-27 06:09:05 +0000 |
commit | 3d6a4fd46e524bffebfb8401d30defa1217ee190 (patch) | |
tree | 696eb1bc90575014460e652927c67227a3d97c02 /lang/gauche | |
parent | 747f91f39faaf8a102bb99d833adfb87d611f1a8 (diff) | |
download | ports-3d6a4fd46e524bffebfb8401d30defa1217ee190.tar.gz ports-3d6a4fd46e524bffebfb8401d30defa1217ee190.zip |
Notes
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 000000000000..450001270884 --- /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))) |