Info files are now stored in the `info/' subdirectory of the Edwin
authorTaylor R. Campbell <net/mumble/campbell>
Sat, 7 Mar 2009 22:03:38 +0000 (22:03 +0000)
committerTaylor R. Campbell <net/mumble/campbell>
Sat, 7 Mar 2009 22:03:38 +0000 (22:03 +0000)
system library directory.  Reflect this in EDWIN-INFO-DIRECTORY.

v7/src/edwin/paths.scm

index d39800573626af0e1a57b6d61b480d647fcf1ad6..b59fac375ac98945221de817c17c4c1ac59ddf28 100644 (file)
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-$Id: paths.scm,v 1.23 2008/01/30 20:02:04 cph Exp $
+$Id: paths.scm,v 1.24 2009/03/07 22:03:38 riastradh Exp $
 
 Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
     1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
@@ -41,7 +41,10 @@ USA.
   (edwin-library-directory-pathname "EDWIN_BINARY_DIRECTORY" #t))
 
 (define (edwin-info-directory)
-  (edwin-library-directory-pathname "EDWIN_INFO_DIRECTORY" #f))
+  (let ((pathname
+        (edwin-library-directory-pathname "EDWIN_INFO_DIRECTORY" #f)))
+    (and pathname
+        (merge-pathnames "info" (pathname-as-directory pathname)))))
 
 (define (edwin-etc-directory)
   (edwin-library-directory-pathname "EDWIN_ETC_DIRECTORY" #t))