From 9fd9bb42657d7c8c2c0018c53933a1e88eaa1566 Mon Sep 17 00:00:00 2001 Message-Id: <9fd9bb42657d7c8c2c0018c53933a1e88eaa1566.1714085389.git.mdw@distorted.org.uk> From: Mark Wooding Date: Wed, 2 Jan 2008 15:56:16 +0000 Subject: [PATCH] Removed instruction about how to set up logical pathname translation Organization: Straylight/Edgeware From: espen --- README | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/README b/README index 494dcc1..337eff7 100644 --- a/README +++ b/README @@ -38,23 +38,13 @@ Build instructions 2. Set up paths to match your system: - - Add a logical-pathname-translation to the clg root directory in - ~/.cmucl-init.lisp, ~/.sbclrc or some other startup file, like - this: - - (setf - (logical-pathname-translations "clg") - '(("**;*.*.*" "/home/espen/src/clg/**/"))) - - Set the correct pkg-config search path if your Gtk+ installation is in an unusual place, by adding it to the PKG_CONFIG_PATH environment variable before starting lisp. - Make sure ASDF finds the system definition files: - (push - (translate-logical-pathname "clg:systems;") - asdf:*central-registry*) + (push "/path/to/clg/systems/" asdf:*central-registry*) When checking out of CVS also do the following: -- [mdw]