diff options
author | Greg J. Badros <gjb@cs.washington.edu> | 2000-01-05 16:41:12 +0000 |
---|---|---|
committer | Greg J. Badros <gjb@cs.washington.edu> | 2000-01-05 16:41:12 +0000 |
commit | 60a740c41c3d5e63a9028ae406aebb4a27b65100 (patch) | |
tree | cfb093c0d6d5090282ec41575e9baf9c7c1b7821 | |
parent | 868d52a463da1e4425e927bdc04d74a8ace53fee (diff) | |
download | guile-60a740c41c3d5e63a9028ae406aebb4a27b65100.tar.gz |
* paths.scm: Use HOME envvar to find guile-modules (this at least
lets people use a symlink in their home directory to point at
guile-modules, instead of Jim's hard-coded path.
-rw-r--r-- | test-suite/paths.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test-suite/paths.scm b/test-suite/paths.scm index cdec3cd8a..4946af8de 100644 --- a/test-suite/paths.scm +++ b/test-suite/paths.scm @@ -1,2 +1,2 @@ (define-module (test-suite paths)) -(define-public datadir "/usr/local/guile/guile-modules/test-suite") +(define-public datadir (string-append (getenv "HOME") "/guile-modules/test-suite")) |