1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 11:40:18 +02:00

* 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.
This commit is contained in:
Greg J. Badros 2000-01-05 16:41:12 +00:00
parent 868d52a463
commit 60a740c41c

View file

@ -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"))