1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-10 22:10:21 +02:00

Tue Jun 17 13:49:56 1997 Tim Pierce <twpierce@bio-5.bsd.uchicago.edu>

*	* load.c (scm_init_load_path): Append $(datadir)/guile to
	%load-path, so modules do not have to be installed in Guile's
	current version directory.
This commit is contained in:
Tim Pierce 1997-06-17 19:20:07 +00:00
parent e035e7e68b
commit 5540787919
2 changed files with 10 additions and 3 deletions

View file

@ -1,3 +1,9 @@
Tue Jun 17 13:49:56 1997 Tim Pierce <twpierce@bio-5.bsd.uchicago.edu>
* * load.c (scm_init_load_path): Append $(datadir)/guile to
%load-path, so modules do not have to be installed in Guile's
current version directory.
Mon Jun 16 17:20:55 1997 Marius Vollmer <mvo@zagadka.ping.de>
* dynl.c (scm_dynamic_call, scm_dynamic_args_call): Wrap dynamic

View file

@ -129,9 +129,10 @@ scm_init_load_path ()
SCM path = SCM_EOL;
#ifdef SCM_LIBRARY_DIR
path = scm_cons2 (scm_makfrom0str (SCM_SITE_DIR),
scm_makfrom0str (SCM_LIBRARY_DIR),
path);
path = scm_listify (scm_makfrom0str (SCM_SITE_DIR),
scm_makfrom0str (SCM_LIBRARY_DIR),
scm_makfrom0str (SCM_PKGDATA_DIR),
SCM_UNDEFINED);
#endif /* SCM_LIBRARY_DIR */
{