Re: Where to install files?

2005-10-13 Thread Neil Jerram
Greg Troxel [EMAIL PROTECTED] writes: My own view is that a package configured with --prefix=/usr/foo should install files only under /usr/foo. This leads me with guile to want to extend load-path to include guile directories in other prefixes. On this point I think I disagree with you.

Re: Where to install files?

2005-10-13 Thread Neil Jerram
[EMAIL PROTECTED] (Ludovic Courtès) writes: I like this approach quite well. It's generic, and it can be used handle both Guile versioning and module versioning. Having it in `init.scm' or some such rather than hardcoded at configuration time sounds like a good idea too. Thanks. I'm about

Re: Modified load-path proposal

2005-10-13 Thread Greg Troxel
Yes it does (I think). If that's what you want, you just write your Makefile.am like this ... scmdatadir = $(datadir)/guile scmdata_DATA = whatever1.scm whatever2.scm ... and add an extra install step (for which I forget the syntax) that does guile-config add-load-path

Re: Modified load-path proposal

2005-10-13 Thread Andreas Rottmann
Greg Troxel [EMAIL PROTECTED] writes: Yes it does (I think). If that's what you want, you just write your Makefile.am like this ... scmdatadir = $(datadir)/guile scmdata_DATA = whatever1.scm whatever2.scm ... and add an extra install step (for which I forget the syntax) that